I have a wordpress page and every link I have it opens into a new tab. This happened when I change the wordpress from localhost to a remote server.
What can be the problem?
Thanks.
I have a wordpress page and every link I have it opens into a new tab. This happened when I change the wordpress from localhost to a remote server.
What can be the problem?
Thanks.
收起
If you check the HTML page source, you can see that every link in your page has the target="_blank"
attribute, which means that every time you click on them, the browser will open a new tab.
If you didn't put the target="_blank"
manually (hence i suggest you to check your theme .php files) something may inject them when the page is loaded. Thus there might be some possibilities:
Without any more information, it's a little hard to answer your question...
报告相同问题?