移动并重命名“特色图像”框
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了移动并重命名“特色图像”框相关的知识,希望对你有一定的参考价值。
Changes the title and moves the featured image box in Wordpress admin area. Add this to functions.php
//--------- Change the title and move the Featured Image box ------------ function customposttype_image_box() { remove_meta_box('postimagediv', 'home-page-banners', 'side'); remove_meta_box('postimagediv', 'page', 'side'); add_meta_box('postimagediv', __('Banner Image - The image that appears at the top of the page, size should be 760 x 155 pixels'), 'post_thumbnail_meta_box', 'page', 'normal', 'high'); add_meta_box('postimagediv', __('Banner Image - 760 x 390 pixels - Bigger images will be cropped automatically.'), 'post_thumbnail_meta_box', 'home-page-banners', 'normal', 'high'); } add_action('do_meta_boxes', 'customposttype_image_box');
以上是关于移动并重命名“特色图像”框的主要内容,如果未能解决你的问题,请参考以下文章