我有两个wordpress网站:
在本地主机服务器(PHP7.3)上运行,在Bluehost上托管。com(PHP7.2)在我的本地网站上添加了metabox,但相同的代码在bluehosted网站上不起作用。
怎么了?
add_action( \'add_meta_boxes\', \'add_mu_address_meta_box\' );
function add_mu_address_meta_box() {
add_meta_box(
\'your_fields_meta_box\', // $id
\'mu Address\', // $title
\'show_mu_address_meta_box\', // $callback
\'post\', // $screen
\'advanced\', // $context
\'high\' // $priority
);
}
function show_mb_address_meta_box() {
global $post;
$meta = get_post_meta( $post->ID, \'your_fields\', true ); ?>
<input type="hidden" name="your_meta_box_nonce" value="<?php echo wp_create_nonce( basename(__FILE__) ); ?>">
<?php }
SO网友:Abhijith-cloud
add_action( \'add_meta_boxes\', \'add_mu_address_meta_box\' );
function add_mu_address_meta_box() {
$screens = array( \'post\', \'page\' );
add_meta_box(
\'your_fields_meta_box\',\'mu Address\',\'show_mb_address_meta_box\',$screens,\'advanced\',\'high\'
);
}