通常的做法是使用小部件。要做到这一点,您需要注册一个新的侧栏,它将显示在widgets部分。
funciton my_sidebars(){
register_sidebar(array(
\'name\' => __( \'My Footer\' ),
\'id\' => \'footer-widgets\',
\'description\' => __( \'Widgets in this area will be shown in the footer.\' ),
\'before_title\' => \'<h1>\',
\'after_title\' => \'</h1>\'
));
}
add_action( \'widgets_init\', \'my_sidebars\' );
然后在页脚中,您可以调用新的边栏小部件。
<div id="footer" class="widget-area">
<?php dynamic_sidebar( \'footer-widgets\' ); ?>
</div><!-- #secondary -->
然后,您只需要使用css对小部件进行样式化,以在列中显示。
您可以在此处阅读有关注册侧栏的更多信息:http://codex.wordpress.org/Function_Reference/register_sidebar