Advertisement
Guest User

Untitled

a guest
Aug 27th, 2015
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. function customfield_1_shortcode( $atts ) {
  2.  
  3. if ( get_post_meta( get_the_ID(), 'customfield1', true ) ) {
  4. $customfield = get_post_meta( get_the_ID(), 'customfield1', true );
  5.  
  6. return "html stuff";
  7. }
  8. add_shortcode( 'customfield_1', 'customfield_1_shortcode' );
  9.  
  10. function customfield_2_shortcode( $atts ) {
  11.  
  12. if ( get_post_meta( get_the_ID(), 'customfield2', true ) ) {
  13. $customfield = get_post_meta( get_the_ID(), 'customfield2', true );
  14.  
  15. return "html stuff";
  16. }
  17. add_shortcode( 'customfield_2', 'customfield_2_shortcode' );
  18. ?>`enter code here`
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement