我已经创建了一个名为mycustomposttype的分层帖子类型。父母是在后台创建的,孩子是通过重力表单创建的。
由于我的主题设置,我希望mycustomposttype中的所有家长在摘录中显示短代码[mycustomshortcode]。
首先,我尝试自动填充所有mycustomposttype帖子的摘录。
add_filter( \'get_the_excerpt\', function( $post_excerpt, $post ){
if( $post->post_type != \'mycustomposttype\' )
return $post_excerpt;
return \'[mycustomshortcode]\';
}, 99, 2 );
这在创建或编辑帖子时不会产生任何摘录。
如何向所有自定义帖子类型的新帖子添加默认摘录值如何仅向该custompost类型的所有新父级添加默认值谢谢。