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类型的主要内容,如果未能解决你的问题,请参考以下文章

AJAX 为 WordPress 帖子加载更多内容

自动打开默认电子邮件客户端并预填充内容

Python快速建站系列-Part.Four-首页内容填充

php WordPress中受限制的内容 - WordCamp ATL 2015

AWS S3 PHP SDK 预签名 url 限制内容类型

AWS S3 PHP SDK 预签名 url 限制内容类型