要将自己的自定义元框添加到页面中,一种简单、简单、快速的方法是首先安装Meta Boxes 插件(required). 接下来,将以下自定义代码添加到functions.php
在您的孩子主题中:
add_filter( \'rwmb_meta_boxes\', \'wpse_236870_meta_boxes\' );
function wpse_236870_meta_boxes( $meta_boxes ) { // Add custom meta box in \'Pages\'
$meta_boxes[] = array(
\'title\' => __( \'Some Meta Box Title\', \'textdomain\' ),
\'post_types\' => \'page\',
\'fields\' => array(
array( // Add custom textbox
\'id\' => \'your_id_here\',
\'name\' => __( \'Some Title\', \'textdomain\' ),
\'type\' => \'textarea\',
)
),
);
return $meta_boxes;
}
因此,您有了自定义的元框。
作者
Meta Boxes 插件具有
very extensive documentation 这将在其他方面帮助你。