How can I save custom meta to one global value?
Consider that when you add a metabox, nothing force you to save the value in post meta field, you can save a global option from metabox as well. function my_add_custom_box() { $screens = array( ‘post’ ); // add or replace with your cpt name foreach ( $screens as $screen ) { add_meta_box( ‘my_sectionid’, __( ‘Featured … Read more