Title: webmato's Replies | WordPress.org

---

# webmato

  [  ](https://wordpress.org/support/users/webmato/)

 *   [Profile](https://wordpress.org/support/users/webmato/)
 *   [Topics Started](https://wordpress.org/support/users/webmato/topics/)
 *   [Replies Created](https://wordpress.org/support/users/webmato/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/webmato/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/webmato/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/webmato/engagements/)
 *   [Favorites](https://wordpress.org/support/users/webmato/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Lazy Load] How can you tell if it's working?](https://wordpress.org/support/topic/how-can-you-tell-if-its-working-1/)
 *  [webmato](https://wordpress.org/support/users/webmato/)
 * (@webmato)
 * [10 years ago](https://wordpress.org/support/topic/how-can-you-tell-if-its-working-1/#post-7192161)
 * Exactly! You have to put it inside your template files.
 * for example inside:
 *     ```
       <?php while (have_posts()) : the_post(); ?>
         <article <?php post_class(); ?>>
           <h1 class="entry-title"><?php the_title(); ?></h1>
           <div class="entry-content">
             <?php the_content(); ?>
           </div>
         </article>
       <?php endwhile; ?>
       ```
   
 * use this code from [FAQ](https://wordpress.org/plugins/lazy-load/faq/) :
 *     ```
       <?php while (have_posts()) : the_post(); ?>
         <article <?php post_class(); ?>>
           <h1 class="entry-title"><?php the_title(); ?></h1>
           <div class="entry-content">
             <?php
             if ( function_exists( 'lazyload_images_add_placeholders' ) )
               $content = lazyload_images_add_placeholders( get_the_content() );
               echo $content;
             ?>
           </div>
         </article>
       <?php endwhile; ?>
       ```
   
 * now it works for me 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Sublanguage] translate the custom link](https://wordpress.org/support/topic/translate-the-custom-link/)
 *  [webmato](https://wordpress.org/support/users/webmato/)
 * (@webmato)
 * [10 years ago](https://wordpress.org/support/topic/translate-the-custom-link/#post-7106707)
 * great!

Viewing 2 replies - 1 through 2 (of 2 total)