添加include到wordpress functions.php返回

时间:2013-06-12 15:50:28

标签: php wordpress include

我需要为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的新手

1 个答案:

答案 0 :(得分:0)

不太确定您的要求,但如果您希望将包含文件添加到帖子中:

function addstyling($content){  
    global $post;
    $share = file_get_contents(TEMPLATEPATH . '/includes/share.php'); 
    return $share . $content . '<br><br>Sharethis';
}