2017-02-14 55 views
0

我正在使用「Rocket Lazy Load」插件來延遲加載我的圖像,但它與滑塊不兼容。在wordpress.org的插件頁面中,說:you should add 'data-no-lazy="1"' property to your image tag then it won't be effected。我的圖片調用函數是:添加屬性到圖像加載函數

<?php the_post_thumbnail('thumbnail-blog-featured', array('title' => "")); ?> 

我怎麼能提到的屬性添加到我的滑塊的圖片?

回答

0

很簡單,你可以像下面添加屬性:

the_post_thumbnail('thumbnail-blog-featured', array('title' => get_the_title(), 
    'data-no-lazy' => '1')); 
+0

是的,但我不知道爲什麼它不工作。在最終的html中,沒有任何跡象表明這個插件能夠完成這項工作。 – ata

+0

我忘了說我使用外部功能圖像的插件。這是取代屬性。對此有何想法?我該如何解決它? – ata