您需要添加一个元框,然后添加wp\\u编辑器作为字段。然后,在到达显示数据的部分之前,需要处理/保存元数据。
我今天早上刚和Types plugin, 这是我发现的最简单的事情。(Advanced Custom Fields 和Metabox 也是不错的选择)
或者,要从头开始对元数据库进行编码,您可以使用以下答案中的代码:Post custom metabox textarea using wp_editor
我用来在输出上正确格式化它的技巧是在函数中添加以下内容。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\' );
然后在需要显示元内容调用的地方
if( $meta = get_post_meta( get_the_ID(), \'ID-of-your-meta-field\', true ) ) :
echo apply_filters(\'meta_content\', $meta );