我有一个插件正在加载它。js在我网站的每个页面上。
我能够从加载中筛选出插件,但我不知道如何指定要加载的页面。
插件代码:
function A2A_SHARE_SAVE_head_script() {
add_filter( \'addtoany_script_disabled\', \'__return_true\' );
$script_disabled = apply_filters( \'addtoany_script_disabled\', false );
我需要能够将脚本排入博客单帖页面的队列,页面模板如下所示:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php get_template_part( \'entry\' ); ?>
<?php endwhile; endif; ?>
然后进入。php我手动调用插件,如下所示:
<?php if ( function_exists( \'social_sharing_buttons\' ) ) { social_sharing_buttons(); } ?>