Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个滑块,它使用各种帖子中的特色图片中的图片。当您单击滑块上的图像时,它们会链接回帖子。如何完全删除链接?我不希望滑块图像链接到任何东西。这是我的代码:
<?php if ( has_post_thumbnail() )the_post_thumbnail(array( 650,999 ), array( 'alt' => get_the_title(), 'title' => get_the_title(), 'class' => 'slidethumb' )); ?>
在您的代码段中没有创建链接。当你这样做时,你的源代码会说什么:
var_dump(get_the_post_thumbnail( array( 650,999 ), array( 'alt' => get_the_title(), 'title' => get_the_title(),'class' => 'slidethumb' ) )); die();