如何在WP4.2上删除图像的链接

时间:2015-08-15 作者:Ricol

我正在使用Wordpress 4.2,我想删除一些图片中的链接。

我发现我可以用这个:

enter image description here

问题是我在界面上看不到:

enter image description here

Where can I find the same attachement display setting in WP 4.2 ?

1 个回复
SO网友:amespower

使用“附件显示设置”将url设置为“无”的选项可通过“多媒体资料”选项,使用“添加媒体”。您是如何通过特色图片或直接在帖子/页面中添加图像的?如果我的图片在帖子中,你可以删除它。

对于特色图像,您必须进入模板文件并从图像中删除链接包装器。如果您有此功能的条件,例如,只有某些类别未链接,则可以为该情况添加条件。

<?php if ( has_post_thumbnail() ) : ?>
    <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
    <?php the_post_thumbnail(); ?>
    </a>
<?php endif; ?>
对此:

<?php if ( has_post_thumbnail() ) : ?>
    <?php the_post_thumbnail(); ?>
<?php endif; ?>

结束

相关推荐

Add category links?

嗨,我一直在尝试根据所附图片添加类别链接。在我的横幅下方有“音乐”、“思想”、“产品”等类别。但我不知道怎么做。有没有快速的方法可以做到这一点?https://thefussy.co/ 和https://thefussy.co/category/thefword/ 是我希望分类显示的链接,以及来自/来自音乐、思想和产品的所有子分类。我试过编辑类别。php文件,但我似乎无法显示类别。我做错什么了吗?<?php if ( is_home ) : ?> <div class=\"cat