weltraumaffe 0 Report post Posted February 5, 2012 hi, i want to make any thumb (on blog page and single-post page) not clickable. can so.o help me? Share this post Link to post Share on other sites
paul_saccone 0 Report post Posted February 5, 2012 Hi, When you add images to the Media Library, you can specify whether it should be linked or not. Click on SHOW and then look about half way down. You'll see "Link URL" toward the bottom. There are several options there, including a "none" button. Hope that helps. Paul Share this post Link to post Share on other sites
weltraumaffe 0 Report post Posted February 5, 2012 Thanks for your help, but that doesn't helped, because the post-thumbnail is always clickable... how to deactivate this link? Share this post Link to post Share on other sites
Simon 248 Report post Posted February 5, 2012 [code]add_action('pagelines_thumb_markup', '_make_unclickable'); function _make_unclickable( $i ) { preg_match( '##', $i, $out ); return preg_replace( '#class="(.[^"]+)#', 'class="$1 ' . $class[1], $out[0] ); }[/code] Add to customize plugin functions.php Share this post Link to post Share on other sites