我认为,缺乏wp_autop()
以及应用于the_content
滤器编辑器不保存<p>
标记,但稍后换行符会通过wp_autop()
.
我想谈谈元内容,因为我想重新创建默认过滤器。我这样做是因为一些插件通过the_content
滤器
有以下几种过滤器:-
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\');
add_filter( \'meta_content\', \'do_shortcode\' );
将下面的代码放在要显示实际数据的位置。
$your_description = get_post_meta($post->ID, \'meta_name\', true);
echo apply_filters( \'meta_content\', $your_description );