wordpress编辑器自动填充默认的内容

前端之家收集整理的这篇文章主要介绍了wordpress编辑器自动填充默认的内容前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

如果你经常写同样的帖子(文章、列表、代码片段等),我们无需每次敲打同样的内容,下面超级简单的代码片段可以实现非常有用的预填充的wordpress编辑一些自定义内容

在你的主题的 functions.PHP文件中复制以下代码

add_filter( 'default_content','pu_default_editor_content' );

function pu_default_editor_content( $content ) {

global $post_type;

switch( $post_type )

{

case 'post':

$content = 'Default content for blog posts.';

break;

case 'page':

$content = 'Default content for pages.';

break;

case 'portfolio':

$content = 'Default content for your portfolio pages.';

break;

case 'products':

$content = 'Default content for blog posts.';

break;

}

return $content;

}

根据自己填充的需要编辑 $content变量的内容

原文链接:https://www.f2er.com/wordpress/422834.html

猜你在找的wordpress相关文章