更改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.
  1. add_action('do_meta_boxes', 'customposttype_image_box');
  2.  
  3. function customposttype_image_box() {
  4.  
  5. remove_meta_box( 'postimagediv', 'customposttype', 'side' );
  6.  
  7. add_meta_box('postimagediv', __('Custom Image'), 'post_thumbnail_meta_box', 'customposttype', 'normal', 'high');
  8.  
  9. }

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

来自外部 url 的 wordpress 特色图片,无需下载

如何更改谷歌地图标记上方的标题和片段设计

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

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

如何使用 ACF 在 wordpress 中悬停特色图像

Wordpress 模板 - 特色图像滑块不显示图像