Skip to content

Instantly share code, notes, and snippets.

@Asikur22
Last active October 27, 2022 10:19
Show Gist options
  • Save Asikur22/7131c2cc3ec198fc41bffc16877cb2a8 to your computer and use it in GitHub Desktop.
Save Asikur22/7131c2cc3ec198fc41bffc16877cb2a8 to your computer and use it in GitHub Desktop.
Get Custom Field/Metabox Data on Blog Page #cmb #meta
// get the page id.
$page_id = ( 'page' == get_option( 'show_on_front' ) ? get_option( 'page_for_posts' ) : get_the_ID );
// echo page meta for $page_id
echo get_post_meta( $page_id, 'page_title_two', true );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment