我有两个脚本需要为 wordpress 组合,基本上是我自己的自定义共享此链接
将其放入的函数the_content()
;
add_filter( "the_content",'addstyling', 5 );
function addstyling($content){
global $post;
return ''.$content.'<br><br>Sharethis';
}
其他代码只是文件中的 html,通过包含使用:
include(TEMPLATEPATH . '/includes/share.php');
任何帮助都会很棒,我是 PHP 的新手