Guest User

Untitled

a guest
Oct 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. case "portfolio2":
  2. if( get_post_meta($current_post->ID, "_portfolio_thumb", $single = true) != '') {
  3. return '<img title="' . $current_post->post_title . '" alt="' . $current_post->post_title . '" src="' . get_post_meta($current_post->ID, "_portfolio_thumb", $single = true) . '" class="rounded-all" />';
  4. } else {
  5. return get_the_post_thumbnail( $current_post->ID, $context, array( 'alt' => $current_post->post_title, 'title' => $current_post->post_title, 'class' => 'rounded-all' ) );
  6. }
  7. break;
Add Comment
Please, Sign In to add comment