Question:Which of the following will call a static block inside one of Magento's template files?
A $this->setBlockId('my_static_block_name')->toHtml()
B $this->getLayout()->createBlock('cms/block')->setBlockId('my_static_block_name')->toHtml()
C $this->createBlock('cms/block')->setBlockId('my_static_block_name')->toHtml()
D $this->getLayout()->createBlock('cms/block')->BlockId('my_static_block_name')->toHtml()
+ AnswerB
+ Report