Wordpress用内容预填充主内容,限制为post类型
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress用内容预填充主内容,限制为post类型相关的知识,希望对你有一定的参考价值。
/* -------- put default content into custom post type's main content box -------------- */ function my_preset_content() { global $post; if ( $post->post_content == '' and $post->post_type == 'custom_post_type' ) { $default_content = 'my preset content here'; } else { $default_content = $post->post_content; } return $default_content; } add_filter('the_editor_content', 'my_preset_content');
以上是关于Wordpress用内容预填充主内容,限制为post类型的主要内容,如果未能解决你的问题,请参考以下文章