Metabox on certain custom page templates only
-
Hi folks,
My theme has 2 custom page templates and I want to add a meta box on those to page templates only.
I’m using add_meta_box to create a nice meta box:
function my_metabox() { add_meta_box( 'my-custom-metabox', __( 'My metabox', 'text-domain' ), 'my_metabox_callback', 'page', 'side', 'default' ); } add_action( 'add_meta_boxes', 'my_metabox' );
But now it’s displayed on all pages.
How do I display it on my 2 custom page templates only?Guido
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Metabox on certain custom page templates only’ is closed to new replies.