我需要为wordpress组合两个脚本,基本上我自己的自定义共享链接
将其放入the_content()
;
add_filter( "the_content",'addstyling', 5 );
function addstyling($content){
global $post;
return ''.$content.'<br><br>Sharethis';
}
,其他代码只是文件中的html,通过include:
使用include(TEMPLATEPATH . '/includes/share.php');
任何帮助都会很棒,我是PHP的新手
答案 0 :(得分:0)
不太确定您的要求,但如果您希望将包含文件添加到帖子中:
function addstyling($content){
global $post;
$share = file_get_contents(TEMPLATEPATH . '/includes/share.php');
return $share . $content . '<br><br>Sharethis';
}