Given my theme structure, how to show container on template file with slug?
-
Hi,
In my WordPress theme I use template files with slugs:
page-10.php
My theme structure:
my-theme/
– page-10.php
– includes/
– – post-meta.php
– style.css
…I’m following Carbon Fields documentation, and in
includes/post-meta.php
I am struggling with how to get the container to appear on the edit screen forpage-10.php
. This is the code
I am using inincludes/post-meta.php
:use Carbon_Fields\Container; use Carbon_Fields\Field; Container::make('post_meta', 'Custom Data') ->show_on_post_type('page') ->show_on_template('page-10.php') // why doesn't this work? ->add_fields(array( Field::make('map', 'crb_location')->set_position(37.423156, -122.084917, 14), Field::make('choose_sidebar', 'crb_custom_sidebar'), Field::make('image', 'crb_photo'), ));
Do you know where I’m going wrong?
thanks
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Given my theme structure, how to show container on template file with slug?’ is closed to new replies.