【发布时间】:2016-10-24 13:12:15
【问题描述】:
如果帖子的帖子格式为“画廊”,我想在“内容编辑器”中生成占位符文本。但我无法让它工作:
functions.php:
add_filter( 'default_content', 'wpse57907_default_content', 10, 2 );
function wpse57907_default_content( $content, $post ) {
if ( 'post' == $post->post_type && has_post_format('gallery')) {
$content = '<i style="color:#999">Use this area to upload and edit images... any text put in here will NOT be generated on the project's page. Please use the fields above for text.</i>';
return $content;
}
}
【问题讨论】:
标签: php wordpress function post-format