Advertisement
srikat

Untitled

May 15th, 2015
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. //* Add a button to display video (if present) in .entry-content-wrap
  2. add_action( 'genesis_entry_footer', 'sk_add_video_btn' );
  3. function sk_add_video_btn() {
  4. $video_url = get_post_meta( get_the_ID(), 'video_url', true );
  5. if ( $video_url ) {
  6. echo '<a href="'. $video_url .'" rel="nofollow">Click to watch the video</a>';
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement