php 重命名特色图片

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 重命名特色图片相关的知识,希望对你有一定的参考价值。

<?php
function change_featured_image_labels( $labels ) {

	$labels->featured_image 	= 'Headshot';
	$labels->set_featured_image 	= 'Set headshot';
	$labels->remove_featured_image 	= 'Remove headshot';
	$labels->use_featured_image 	= 'Use as headshot';

	return $labels;

} // change_featured_image_labels()

add_filter( 'post_type_labels_person', 'change_featured_image_labels', 10, 1 );
?>

以上是关于php 重命名特色图片的主要内容,如果未能解决你的问题,请参考以下文章