在WordPress中检测帖子类型附件

时间:2018-10-30 09:07:46

标签: wordpress attachment

在我更改了网站的固定链接后,在我的网站https://chicken-device.ir中,我找不到很多页面。

许多未找到的页面用于图像页面。我写了一些代码来重定向网址链接,例如https://example.com/post-namehttps://example.com/blog/post-name

现在我有很多附件文件,然后在Google网站管理员工具中返回404页面。 如何检测WordPress中的帖子类型附件?仅定位附件文件页面。

1 个答案:

答案 0 :(得分:0)

发布重定向网址的代码。 您可以使用以下代码检查帖子类型:

$queried_object = get_queried_object();
$post_type = $queried_object->post_type;