看起来您正在使用最花哨的作者框插件(FAB)。
这个插件不是开源的,因此很难给出详细的解决方案,因为我无法查看其中的代码。
我想它使用the_content
具有一定优先级的筛选器p
.
要移动Sharethis下方的FAB框(&em)相关帖子,然后您可以尝试以下操作:
/**
* Append sharethis & related-posts to the content
* See http://wordpress.stackexchange.com/q/116264/
*
* @param string $content
* @return string $content
*/
function the_content_wpse_116264( $content ){
if( is_single() ){
$content .= do_shortcode( \'[sharethis]\' );
if( function_exists( \'wp_get_related_posts\' ) )
$content .= wp_get_related_posts();
}
return $content;
}
add_filter( \'the_content\', \'the_content_wpse_116264\', 11, 1 );
其中优先级
11
希望低于
p
.
如果这仍然给您带来有关优先级的问题,您可以尝试删除the_content
按FAB应用筛选,并以相关优先级再次添加。