先做好偽靜態(tài),下面的設置才能生效
創(chuàng)新互聯(lián)專注于企業(yè)成都全網(wǎng)營銷、網(wǎng)站重做改版、郊區(qū)網(wǎng)站定制設計、自適應品牌網(wǎng)站建設、成都h5網(wǎng)站建設、電子商務商城網(wǎng)站建設、集團公司官網(wǎng)建設、外貿(mào)營銷網(wǎng)站建設、高端網(wǎng)站制作、響應式網(wǎng)頁設計等建站業(yè)務,價格優(yōu)惠性價比高,為郊區(qū)等各大城市提供網(wǎng)站開發(fā)制作服務。
WordPress固定鏈接有六種方法供選擇
登陸wp后臺-設置-固定鏈接?
wordpress提供了6種鏈接形式選擇,所以說你可以選擇的設置方式很多。比如用文章ID作為文章鏈接,文章ID是不會重復的,ID后添加.html偽靜態(tài):/%post_id%.html,選擇自定義就行。
老魏覺得文章ID是比較簡單的一種,當然你也能選擇別的自定義方式,效果都是一樣的,搜索引擎排名方面不用考慮太多,看的是你的內(nèi)容不是文章鏈接。
找到代碼:(作用:設置關鍵字)meta name="keywords" content="這里是你網(wǎng)站首頁的關鍵字..." /替換為:meta name="keywords" content="?php if (is_single()){ $keywords = "";$tags = wp_get_post_tags($post-ID);foreach ($tags as $tag ) {$keywords = $keywords . $tag-name . ", ";}echo $keywords;}else{echo ("這里是你網(wǎng)站首頁的關鍵字...");} ?" /找到代碼:(作用:設置描述)meta name="description" content="這里是你網(wǎng)站首頁的描述..." /替換為:meta name="description" content="?php if (is_single()){ echo mb_strimwidth(strip_tags(apply_filters('the_content', $post-post_content)), 0, 180,"");} else{echo ("這里是你網(wǎng)站首頁的描述...");}?" /步驟2 :點擊“更新文件”保存設置。 關鍵字:織夢CMS教程DedeCMS教程相關文章:如何實現(xiàn)WordPress分類目錄雙列顯示教你如何在WordPress 正文鏈接添加tooltips 教程利用百度的云平臺——BAE搭建WordPress教程如何將Lightbox整合到WordPress主題教程如何將網(wǎng)站從z-blog轉移到wordpress系統(tǒng)中
可以利用wordpress中的widgets來搞定,來吧實戰(zhàn)開始:
首先,備份\wp-includes\default-widgets.php
然后,找到\wp-includes\default-widgets.php文件中,大約在679行
sprintf(_x('%1$s?on?%2$s',?'widgets'),?get_comment_author_link(),?'a?href="'?.?esc_url(
get_comment_link($comment-comment_ID)?)?.?'"'?.?get_the_title($comment-comment_post_ID)?.?'/a')?.?'/li';
將其修改為:
//sprintf(_x('%1$s?on?%2$s',?'widgets'),?get_comment_author_link(),?'a?href="'?.?esc_url(
//get_comment_link($comment-comment_ID)?)?.?'"'?.?get_the_title($comment-comment_post_ID)?.?'/a')?.?'/li';
sprintf(_x('%1$s?在“%2$s”留言:',?'widgets'),?get_comment_author_link(),?'a?href="'?.?esc_url(
get_comment_link($comment-comment_ID)?)?.?'"'?.?get_the_title($comment-comment_post_ID)?.?'/a')?.?'span'?.?strip_tags(?$comment-comment_content)?.?'/span/li';
這樣就OK了。
前臺顯示效果如圖: