0 votes
738 views
in Magento by
How can we call a static block directly in Magento?

1 Answer

0 votes
by
You can do this simply by calling this method below.

<?php

echo $this->getLayout()->createBlock('cms/block')->setBlockId('block-name')->toHtml();

?>

You may thank someone else for this, as I have got this from some other article online long before :)

...Kat

Related questions

+1 vote
2 answers 8.8k views
asked Jan 30, 2018 in Frameworks by Doumeki (480 points)
+1 vote
1 answer 7.5k views
asked Jan 31, 2018 in Magento by Edward121 (260 points)
0 votes
1 answer 14.3k views
0 votes
1 answer 8.9k views
+1 vote
1 answer 5.7k views
0 votes
1 answer 2.2k views
asked Feb 14, 2017 in Magento by Toms
...