如何在Wordpress中添加/更改页脚作为插件功能?

时间:2018-10-22 06:34:05

标签: php wordpress wordpress-theming footer wordpress-plugin-creation

我已经在要创建的插件中创建了一个自定义窗口小部件区域。

function arphabet_widgets_init() {

register_sidebar( array(
    'name'          => 'Home right sidebar',
    'id'            => 'home_right_1',
    'before_widget' => '<div>',
    'after_widget'  => '</div>',
    'before_title'  => '<h2 class="rounded">',
    'after_title'   => '</h2>',
) );
}
add_action( 'widgets_init', 'arphabet_widgets_init' );

dynamic_sidebar( 'home_right_1' );

并且为了显示存储在此窗口小部件中的窗口小部件,我将这段代码插入了我当前用于测试的主题的footer.php中。

<?php if ( is_active_sidebar( 'home_right_1' ) ) : ?>
                <div id="primary-sidebar" class="primary-sidebar widget- 
 area" role="complementary">
                    <?php dynamic_sidebar( 'home_right_1' ); ?>
                </div><!-- #primary-sidebar -->
                <?php endif; ?> 

它起作用了,当我将小部件添加到我的小部件区域时,它们会显示在网站的页脚中。但是我想使插件能够正常工作而无需手动更改footer.php。如何检查激活了哪个主题,然后找到该主题,footer.php文件,并在我想要的位置精确添加该代码(安装时将显示在使用该主题创建的任何其他页脚下方。此外,我想删除之前生成的页脚。

0 个答案:

没有答案