如何在WordPress帖子中自动包含以下PHP脚本?
<?php if ( function_exists( 'ADDTOANY_SHARE_SAVE_KIT' ) ) { ADDTOANY_SHARE_SAVE_KIT(); } ?>
我不熟悉PHP,我假设上面是我用来显示社交分享按钮的插件的代码。
我希望有人可能会在之前自动将摘要添加到摘录中,并且会将一些代码复制到我的子主题functions.php
中吗?
答案 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
文件。