从 Wordpress 中的特色图片中删除链接


Remove the link from a Featured Image in Wordpress

我有一个滑块,它使用各种帖子中特色图片中的图像。当您单击滑块上的图像时,它们会链接回帖子。如何完全删除链接? 我不希望滑块图像链接到任何内容。这是我的代码:

    <?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();