如何在magento中添加静态块到侧边栏

How can add static block to side bar

<block type="static block" name="static.poll" before="cart_sidebar">

Am using the above code but still error

The best way to do this is create "local.xml" file in your themes layout section and place below code.

<layout version="0.1.0">
    <default>
        <reference name="right">
            <block type="cms/block" name="your-block-identifier" before="-">
                <action method="setBlockId"><block_id>your-block-identifier</block_id></action>
            </block>
        </reference>
    </default>
</layout>

Use this code ..

<action method="setBlockId"><block_id>STATIC_BLOCK_ID</block_id></action> </block> <reference>

Hope this helps..