Hi. I want to create a custom metabox for the Posts. It works fine for my custom post type but not for the default WP posts.
<?php
/*
Title: My Demo Related Metabox
Post Type: demo
Locked: false
Context: side
*/
piklist(‘field’, array(
‘type’ => ‘post-relate’
,’scope’ => ‘post’
,’template’ => ‘field’
));
piklist(‘field’, array(
‘type’ => ‘post-relate’
,’scope’ => ‘page’
,’template’ => ‘field’
));
?>
I’ve tried to add post to the Post Type area along with demo but nothing changed.