如何在Wordpress摘录中自动包含PHP?

时间:2016-11-10 13:53:00

标签: php wordpress

如何在WordPress帖子中自动包含以下PHP脚本?

<?php if ( function_exists( 'ADDTOANY_SHARE_SAVE_KIT' ) ) { ADDTOANY_SHARE_SAVE_KIT(); } ?>

我不熟悉PHP,我假设上面是我用来显示社交分享按钮的插件的代码。

我希望有人可能会在之前自动将摘要添加到摘录中,并且会将一些代码复制到我的子主题functions.php中吗?

1 个答案:

答案 0 :(得分:0)

AddToAny Share Buttons插件包含选项Display at the bottom of excerpts 或者你可以添加代码

function add_excerpt_social( $excerpt ) {
    if ( function_exists( 'ADDTOANY_SHARE_SAVE_KIT' ) ) { return $excerpt.ADDTOANY_SHARE_SAVE_KIT(array("output_later" => true)); }
    else { return $excerpt; }
}
add_filter('get_the_excerpt', 'add_excerpt_social');

到您的主题functions.php文件。