我正在尝试找出该网站的作者页面链接有什么问题。 author.php正确放置在主题文件夹中。
这是我唯一需要链接的代码:
<p class="autor">por <?php get_the_author_posts_link(); ?></p>
以下是作者页面链接的示例: https://aoriente.com/news/author/goncaloasm/
这是帖子。作者链接只是下面的标题: https://aoriente.com/news/688/
怎么了?
答案 0 :(得分:1)
可以通过Yoast SEO插件启用/禁用作者页面。
您应该查看Yoast SEO设置以启用它。
答案 1 :(得分:1)
我们已使用您的插件,其中Wordpress作者页面将重排链接到首页
plugin- https://wordpress.org/plugins/wordpress-seo/
https://wordpress.org/plugins/redirection/
https://wordpress.org/plugins/simple-301-redirects/
将旧域重定向到新域
Here’s the code that you will need to add to the .htaccess file of the
old domain.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^olddomain\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.olddomain\.com$
RewriteRule (.*)$ http://www.newdomain.com/$1 [R=301,L]
</IfModule>