Last active
October 27, 2022 10:19
-
-
Save Asikur22/7131c2cc3ec198fc41bffc16877cb2a8 to your computer and use it in GitHub Desktop.
Get Custom Field/Metabox Data on Blog Page #cmb #meta
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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