您可以使用创建自己的操作do_action, 像这样:
<?php do_action(\'before_sidebar\'); // you can name it whatever you want ?>
<?php if ( is_active_sidebar(\'main-sidebar\') ) : ?>
<ul>
<?php dynamic_sidebar(\'main-sidebar\'); ?>
</ul>
<?php endif; ?>
<?php do_action(\'after_sidebar\'); ?>
和使用
add_action() 通常情况下:
add_action(\'before_sidebar\', \'before_sidebar_function\');
add_action(\'after_sidebar\', \'after_sidebar_function\');
更新:根据您可以使用的法典
wp_meta hook:
在侧边栏中运行。php模板文件调用wp\\u元函数,以允许插件将内容插入侧栏。
但它应该由主题作者添加。
此页面可能会有所帮助Full Action Hooks Reference.