PHP 在Wordpress中更改特色图像框的位置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 在Wordpress中更改特色图像框的位置相关的知识,希望对你有一定的参考价值。

add_action('do_meta_boxes', 'customposttype_image_box');

function customposttype_image_box() {

	remove_meta_box( 'postimagediv', 'customposttype', 'side' );

	add_meta_box('postimagediv', __('Custom Image'), 'post_thumbnail_meta_box', 'customposttype', 'normal', 'high');

}

以上是关于PHP 在Wordpress中更改特色图像框的位置的主要内容,如果未能解决你的问题,请参考以下文章

使用wordpress建博客,如何设置特色图像不显示在文章中

PHP 将特色图像支持添加到WordPress主题

php 将Wordpress特色图像移动到主列中

如何在Wordpress中使用帖子标题作为特色图像替代文字?

PHP Wordpress - 如果没有图像设置,则显示带有帖子的特色图像或默认图像

php 将特色图像添加到Wordpress RSS feed