以下内容将在初始“设置特色图像”文本中添加帮助文本
将以下内容添加到主题的功能中。php。用帮助文本替换“此处显示自定义文本”。
已测试并正常工作。
function custom_featured_image_text( $content ) {
return \'<p>\' . __(\'Your custom text goes here\') . \'</p>\' . $content;
}
add_filter( \'admin_post_thumbnail_html\', \'custom_featured_image_text\' );
上载图像后,以下内容将在“单击图像以编辑或更新”文本中添加帮助文本
function custom_featured_image_text_2( $content ) {
return str_replace(__(\'Click the image to edit or update\'), __(\'Your custom text goes here\'), $content);
}
add_filter( \'admin_post_thumbnail_html\', \'custom_featured_image_text_2\' );