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.
我已经按照本教程创建了带有描述和特色图像的 Wordpress 菜单项。您可以在屏幕右侧看到结果。
现在有一个问题:有没有办法让图片可以点击?
谢谢
这是一篇旧帖子,但由于没有发布解决方案,如果您遇到同样的问题,这就是您要做的。
按照上面提到的教程,你会在functions.php的某个地方有这行代码:
$args['thumbnail_link'] = false;
只需更改为:
$args['thumbnail_link'] = true;
你完成了。您的缩略图现在将链接到各自的页面。如果您想对图像的 URL 进行更多控制,那就有点复杂了,因此您需要搜索其他解决方案。