Wordpress用内容预填充主内容,限制为post类型

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress用内容预填充主内容,限制为post类型相关的知识,希望对你有一定的参考价值。

  1. /* -------- put default content into custom post type's main content box -------------- */
  2.  
  3. function my_preset_content() {
  4.  
  5. global $post;
  6.  
  7. if ( $post->post_content == '' and $post->post_type == 'custom_post_type' ) {
  8.  
  9. $default_content = 'my preset content here';
  10.  
  11. } else {
  12. $default_content = $post->post_content;
  13. }
  14. return $default_content;
  15. }
  16.  
  17. add_filter('the_editor_content', 'my_preset_content');

以上是关于Wordpress用内容预填充主内容,限制为post类型的主要内容,如果未能解决你的问题,请参考以下文章