Advertisement
Guest User

Untitled

a guest
Nov 12th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. function create_blog_card($post) {
  2. $link = get_permalink($post->ID);
  3. $output = '<div id="post-'. $post->ID .'" class="col-md-4 recent-post text-center">';
  4. $output .= '<a href="'. $link .'">'. get_the_post_thumbnail($post->ID) .'</a>';
  5. $output .= '<div class="post-excerpt-content">';
  6. $output .= '<h4 class="blog-post-title"><a href="'. $link . '">'. $post->post_title .'</a></h4>';
  7. $output .= '<p>'. wp_trim_words( $post->post_content, 35, ' [...]' ) .'</p>';
  8. $output .= '</div>';
  9. $output .= '</div>';
  10. return $output;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement