Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. // Choose Category For Posts
  2. $cmb->add_field( array(
  3. 'name' => esc_html__( 'Category', 'majestica' ),
  4. 'desc' => esc_html__( 'Category of Posts to Display. If using one of the templates that displays a number of posts.', 'majestica' ),
  5. 'id' => 'majestica_posts_category',
  6. 'taxonomy' => 'category', //Enter Taxonomy Slug
  7. 'type' => 'taxonomy_select',
  8. ) );
  9.  
  10. $categoryname = get_post_meta( get_the_ID(), 'majestica_posts_category', true );
  11. echo $categoryname;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement