Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. remove_action( 'propertyhive_before_search_results_loop_item_title', 'propertyhive_template_loop_property_thumbnail', 10 ); // remove default functionality
  2. add_action( 'propertyhive_before_search_results_loop_item_title', 'propertyhive_template_loop_property_thumbnail_lazy', 10 ); // add bespoke functionality
  3. function propertyhive_template_loop_property_thumbnail_lazy()
  4. {
  5. global $post, $property;
  6.  
  7. $photo_url = $property->get_main_photo_src( 'large' );
  8.  
  9. echo '<img data-src="' . $photo_url . '" alt="' . get_the_title($post->ID) . '" class="lazy">';
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement