我想做的是重新创建应用于the_content
通过在函数中添加以下内容。php。
/*
* Recreate the default filters on the_content
* this will make it much easier to output the meta content with proper/expected formatting
*/
add_filter( \'meta_content\', \'wptexturize\' );
add_filter( \'meta_content\', \'convert_smilies\' );
add_filter( \'meta_content\', \'convert_chars\' );
add_filter( \'meta_content\', \'wpautop\' );
add_filter( \'meta_content\', \'shortcode_unautop\' );
add_filter( \'meta_content\', \'prepend_attachment\' );
然后模板代码如下所示:
<?php
if( $about = get_post_meta($post->ID, \'_aboutus\', true ) ):
echo \'<div class="companyaboutus">\'. apply_filters( \'meta_content\', $about ) . \'</div>\';
endif;
?>
当然,你可以使用
the_content
但是我发现插件也喜欢挂接到显示共享按钮之类的东西上,所以这种方法避免了共享按钮占据页面。