更改Wordpress中特色图像框的位置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了更改Wordpress中特色图像框的位置相关的知识,希望对你有一定的参考价值。
Add this to your Wordpress theme's functions.php file. It allows you to move the 'featured image' upload/select box from the admin sidebar to another position on the page, to give it more prominence.
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'); }
以上是关于更改Wordpress中特色图像框的位置的主要内容,如果未能解决你的问题,请参考以下文章
来自外部 url 的 wordpress 特色图片,无需下载
如何在Wordpress中使用帖子标题作为特色图像替代文字?