Wordpress地址URL和bloginfo

时间:2014-09-04 12:59:56

标签: css wordpress url https

我已经在Wordpress的常规设置中将我的Wordpress地址(URL)和站点地址(URL)更新为https://,因为我已向主机添加了一个secruity证书。

如果我正在使用

,css网址是否应自动更新以反映新地址
        <link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url'); ?>" /> 
标题代码中的

网址现在是https://但是css网址仍然指向http://

2 个答案:

答案 0 :(得分:2)

您需要使用site_url($path_to_style_sheet, 'https')代替bloginfo()

home_url()方法也支持https。

答案 1 :(得分:0)

您应该使用:

<?php get_stylesheet_uri(); ?>

换句话说:

<link rel="stylesheet" type="text/css" href="<?php echo get_stylesheet_uri(); ?>" />