如何安排支持=>缩略图

时间:2014-12-11 作者:misterzik

下午好

我创建了一个主要使用特色图像的CPT,我想知道如何重新排列此框,使其显示在“内容编辑器”的中心位置,而不是右侧(默认)。

这是我到目前为止所做的,

$args = array(\'public\' => true, \'label\' => \'MisterZik\', 
\'menu_position\' => 10,  \'menu_icon\' => \'dashicons-format-gallery\',
\'supports\' => array(\'title\', \'thumbnail\'));

register_post_type(\'zik_images\', $args);
谢谢!

I would like to move the box on the right to the center.

1 个回复
SO网友:Howdy_McGee

你能做的就是更换它,以下是我使用的:

/** Use "Featured Image" Box As A Custom Box **/
function post_type_featured_image() {
    add_meta_box(
        \'postimagediv\',
        __(\'Your Custom Title Here\'),
        \'post_thumbnail_meta_box\', 
        \'YOUR_POST_TYPE_HERE\', 
        \'normal\', 
        \'high\'
    );
}
add_action( \'do_meta_boxes\', \'post_type_featured_image\' );
作为解释,你可以在add_meta_box() function.

您可以在此处替换文本:__(\'Your Custom Title Here\') 无论你喜欢什么,这将取代“特色图片”标题。

您需要更换\'YOUR_POST_TYPE_HERE\' 对于实际的帖子类型,如果您想在内置页面上替换它,您可以将该文本替换为page.

上下文是\'normal\' 告诉它将其添加到左侧,而不是侧边栏,最后\'high\' 告诉WP将其添加到顶部。同样,要获得更深入的信息,请查看add_meta_box() 作用

结束

相关推荐

重置/重新排序MySQL wp_posts表中的帖子ID

我有一个相当受欢迎的Wordpress网站。我正在优化网站,然后再添加其他插件,如WPML插件,我怀疑该插件将使用自定义帖子类型。该网站已经有其他插件,我不怀疑这些插件使用wp\\u posts表来定制帖子类型,除了1或2只是为了创建。Is it possible to rebuild/update/reorder the ID column in the wp_posts table such that the post IDs start from 1 and increase without any