Advertisement
Aurangajeb

Render Custom Post Field data with Shortcode

Jul 10th, 2021 (edited)
1,218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. /**
  2. * Render Custom Post Field data with Shortcode
  3. **/
  4.  
  5. function show_post_custom_field_meta( $atts ){
  6.      global $post;
  7.      $key=$atts['name'];
  8.      if(empty($key)) return;
  9.     return get_post_meta($post->ID, $key, true);
  10. }
  11. add_shortcode( 'post_custom_field', 'show_post_custom_field_meta' ); // Usage: [post_custom_field name="email_address_1"]
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement