我刚开始使用wordpress。我创建博客,现在我有index.php与帖子列表。如果我将图像添加到管理面板中的帖子,图像有href,但它们会重定向到附件 - 而不是发布。我当然可以使用:
has_post_thumbnail()
但这仅在我在admin中设置时才有效。
我的问题是:如何为添加到帖子的图片创建重定向作为默认发布(而不是附件)。
答案 0 :(得分:1)
这是典型的WordPress,应该会发生。将媒体插入页面时,由作者决定如何显示。请参阅角落右下角的附件设置。您需要根据自己的喜好选择“无”或“自定义URL”。您的目前设置为" Media File"就像下面的截图一样。
您可以将此代码段添加到主题 functions.php 文件中以更改默认设置:
function image_overrides() {
update_option('image_default_align', 'center' ); // Changes the alignment
update_option('image_default_link_type', 'none' ); // Changes the Link type
update_option('image_default_size', 'large' ); // Changes the default size
}
add_action('after_setup_theme', 'images_overrides');