标签:
今天添加完统计信息后,发现ICP备案号在Twenty Fourteen和Twenty Fifteen这两个主题上不显示。看了主题下的footer.php代码,都已经添加了<?php do_action( ‘twentyfourteen_credits’ ); ?>,这句话就是实现 “ICP备案号”的代码。
既然代码有了实际没有显示出来,我了一下配置,在配置ICP备案号的地方有一句话:“仅对WordPress自带主题有效。”也就是说,只对Twenty Thirteen主题生效。
那问题来了,为毛?怎么办?
对比Twenty Thirteen主题和其它两个主题的footer.php的代码,发现有一个值不一样:就是do_action里面的变量不一样。我就去wp-content目录grep一下这个变量“twentythirteen_credits”。结果发现:
在wp-content/languages/zh_CN.php文件中,只对主题Twenty Thirteen添加了action,其它两个主题没有添加。所以需要补齐剩下两个主题的action,如下所示:
[forlong401 wp-content]# grep -r “twentythirteen_credits” .
./languages/zh_CN.php:add_action( ‘twentythirteen_credits’, ‘zh_cn_l10n_icp_num’ );
./themes/twentythirteen/footer.php: <?php do_action( ‘twentythirteen_credits’ ); ?>
解决办法如下:
在wp-content/languages/zh_CN.php文件中,的最后添加如下代码:
// licong adds for theme twentyfourteen’s ICP
add_action( ‘twentyfourteen_credits’, ‘zh_cn_l10n_icp_num’ );
add_action( ‘twentyfifteen_credits’, ‘zh_cn_l10n_icp_num’ );
标签:
原文地址:http://blog.csdn.net/forlong401/article/details/43853725