0

我有两个脚本需要为 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 的新手

4

1 回答 1

0

不太确定您在问什么,但如果您希望将包含文件添加到帖子中:

function addstyling($content){  
    global $post;
    $share = file_get_contents(TEMPLATEPATH . '/includes/share.php'); 
    return $share . $content . '<br><br>Sharethis';
}
于 2013-06-12T15:53:46.653 回答