我是Wordpress的新手。 我正在将html网站转换为wordpress网站,并在wordpress文本编辑器中添加了网页内容。一切都很好,但我在该网页上有一个重定向到主页的链接, 即锚标记,参考index.html。因此,在文本编辑器中将该页面添加到wordpress后,我已将其更改为 “http://localhost/sitename/”链接到主页。
我的问题是,如何删除localhost并将其链接到主页。我试过php home_url();在锚标签内,但没有工作。
答案 0 :(得分:1)
您可以使用home_url
PHP函数:
<a href="<?php echo home_url(); ?>">Home</a>
您可能需要安装窗口小部件/插件才能在WordPress页面中支持PHP。查看this回答。
答案 1 :(得分:0)
count = 0
while (True):
price1 = int( input("Enter the price of item, or enter -1 to get total: "))
count += 1
if (price1 ==-1):
subtotal = (price1 + ) #this is where I"m having trouble
#at least I think this is the problem
tax = (subtotal*0.05)
total = (subtotal + tax)
print("Subtotal: . . . . . ", subtotal)
print("Tax: . . . . . . . . ", tax)
print("Total: . . . . . . . .", total)
break
检索可访问WordPress应用程序文件(例如wp-blog-header.php或wp-admin /文件夹)的给定网站的URL。
get_site_url( int $blog_id = null, string $path = '', string $scheme = null )
检索可以访问前端的给定站点的URL。
在您的情况下,您可以使用
get_home_url( int $blog_id = null, string $path = '', string|null $scheme = null )
答案 2 :(得分:0)
如果我理解你的问题,这可能会有所帮助:
答案 3 :(得分:0)
使用损坏的链接检查器插件。这将扫描您的所有链接,并返回到您不属于您网站的所有链接()_ url然后您可以编辑网址,找到插件here或者您可以转到php myAdmin并运行以下查询
UPDATE wp_posts SET post_content = REPLACE(post_content, 'localhost/silverspring/', 'www.yourlivesite.com/');
wp_将取决于您给出的表格前缀。