一、工具:電腦、wordpress
景泰網站制作公司哪家好,找創(chuàng)新互聯!從網頁設計、網站建設、微信開發(fā)、APP開發(fā)、成都響應式網站建設公司等網站項目制作,到程序開發(fā),運營維護。創(chuàng)新互聯于2013年創(chuàng)立到現在10年的時間,我們擁有了豐富的建站經驗和運維經驗,來保證我們的工作的順利進行。專注于網站建設就選創(chuàng)新互聯。
二、操作步驟:
【1】登錄wordpress后臺,找到“外觀”-“編輯”。
【2】進入“編輯”頁面,找到“?底部 (footer.php)”
【3】找到a href=”?php echo esc_url( __( ‘’, ‘twentyfourteen’ ) ); ?”?php printf( __( ‘Proudly powered by %s’, ‘twentyfourteen’ ), ‘WordPress’ ); ?/a,將此段代碼刪除,改為自己的版權信息。
【4】最后點擊更新文件,修改結束,刷新首頁看修改效果吧。
注意事項:修改之前,先備份一份,以免修改錯誤回不到初始了。
很多人在下載了自己中意的Wordpress主題,但頁腳的鏈接去不能去除,今天在幫朋友裝一個Wordpress博客的時候就遇到這事,在百度了好久沒收到什么結果,沒想到最后以一個不可思議的辦法來解決這個事情,但我們并不建議去掉人家的版權鏈接,這里只做參考學習。
一般為統(tǒng)計博客版本信息等原因,wordpress會在頭部置入一下版權信息
meta name="generator" content="WordPress 2.9.2" /
部分人為了安全,希望能去掉這個信息,因為不知道版本也就無法針對具體版本的漏洞進行攻擊,當然還有其他原因……
直接看看去掉的方法:在你的當前主題funtions.php中添加以下代碼,并建議放在最前面
function i_want_no_generators()
{
return '';
}
add_filter('the_generator','i_want_no_generators');
一般來說,為了博客的安全,還是建議大家把wordpress中的版本信息去掉,象wordpress2..92,wordpress 3.0.1這個注釋掉,防止黑客或病毒攻擊,上面應該是最好的方法了吧,最簡單,也是最暴力的方法就是直接把
How To Remove Encrypted Footer From Wordpress Theme?
Please follow these steps to remove footer encryption from wordpress theme footer:
Step 1
Open index.php and find include code for the footer. The footer include code looks like:
?php get_footer(); ?
Step 2
Add this comment code on the top and bottom of the footer code:
!–Footer code starts here–
?php get_footer(); ?
!–Footer code ends here–
Save the file and upload it to the server.
Step 3
Load the theme in a browser. View the source code by clicking
View - Source (If you view in IE) or
Ctrl + U (If you view in Firefox)
Step 4
The source code in between !–Footer code starts here– and !–Footer code ends here– is the source code for the footer.
Now, open footer.php and replace the encrypted code with the actual source code. We can then start to modify the footer in anyway we want. But make sure that we have taken require permissions from the theme author.
如果英文看不懂的話,可以GOOGLE翻譯下,也可以留言問我。
網上關于去除版權版本等信息的資料
wordpress版權去除
如果只修改以下footer.php,,當點「更新文件」時就出現了這樣一句話:
This theme is released under creative commons licence, all links in the footer should remain intact
而且後臺也進不了了,始終出現的都是這句話。沒辦法,只有通過FTP重新上傳了主題,還好現在可以進了,不過footer.php那依然不能修改,改了就又會出現那句話。
查找了有關資料發(fā)現header.php有兩段關於eval的語句,functions.php里也有。問題就在這里,下面介紹解決方法吧:
一:先刪除header.php里開頭的那個eval語句,即:
?php
eval(str_rot13('shapgvba purpx_s_sbbgre(){vs(!(shapgvba_rkvfgf("purpx_sbbgre")
......
vagnpg');qvr;}}purpx_s_sbbgre();'));
?
二:將header.php里第二處eval語句
?php eval(str_rot13('shapgvba purpx_shapgvbaf(){vs(!svyr_rkvfgf(qveanzr(__SVYR__)
......
vagnpg');qvr;}}purpx_shapgvbaf();')); wp_head(); ?
用
?php get_header(); ?
替換掉。
三:去掉functions.php開頭的
?php
eval(str_rot13('shapgvba purpx_sbbgre()
......
vagnpg');qvr;}}'));
?
四:刪除functions.php里面的
check_header();
有多少處,刪多少!
五:沒有了,至此你已經對footer.php有絕對控制權了。
可能是由於習慣,經常習慣了把版權信息去掉,我在使用wordpress過程中,發(fā)現功能版塊除了登入\登出,管理,Feed以外,還有一個wordpress鏈接。
太討厭了,博客底部本來就有一個wordpress.org的鏈接,結果現在又有一個鏈接,光一個頁面就有2個鏈接,下面,我還是教大家如何去掉它好了。
找到你的博客安裝目錄,在wp_includes文件夾下面有一個default-widgets.php的文件,并找到以下代碼
lia title=」?php echo esc_attr(__(『Powered by WordPress, state-of-the-art semantic personal publishing platform.』)); ?」 href=」」WordPress.org/a/li
我們把這一行所在的代碼全部刪除了。
注釋掉或者直接刪掉。這樣側欄上的wordpress.org鏈接我們就去掉了。
在wordpress中,一般情況下,在header的信息總是會包含wordpress的版本信息,如何去除這個內容呢,很簡單,在function.php中添加
remove_action(『wp_head』, 『wp_generator』);
就可以去除wordpress的版權信息了。
在wp博客中,有一個常見的安全技巧是:不要在你的wp中顯示出你的版本信息。許多開發(fā)者或者使用者都常常將wp的版本信息顯示了出來,但這樣可能會被一些人利用該版本的漏洞對你的博客進行攻擊。很多人對此比較模糊,這樣可能就會給你的博客帶來安全性的問題。
默認情況下,當wp_head() 函數在header.php文件的head標簽中被調用時wordpress就執(zhí)行了wp_generator(),wp_head()函數所處位置如圖:
當wordpress在網頁中運行時,wp_generator()函數輸出如下內容(可以在頁面源代碼中查看到):
1
meta name="generator" content="WordPress 2.8.1" /
那麼如何去除wordpress的版本信息以保證博客的安全呢,方法有三:
1. 最暴力的方法:
直接刪除header.php文件中的wp_head()函數(我當前主題就是采用的這種方法);
2. 比較好的方法:
比刪除wp_head()函數更好的方法是在function.php文件中添加一個功能函數,通過返回一個空白的字符串給the_generator()函數,這樣輸出的版本信息將為空,代碼如下:
1
2
3
4
function remove_version_info() {
return '';
}
add_filter('the_generator', 'remove_version_info');
3. 正確的方法:
只需在function.php文件中添加41個字符的代碼,即可實現,它是通過remove_action()函數刪除了wp_head()函數中的wp_generator()函數,代碼如下:
1
remove_action('wp_head', 'wp_generator');
修改atahualpa theme footer的版權信息
今天修正一下BLOG,好久沒有更新了,看到右邊和下面一些鏈接,想要修整一下。由于這個BLOG網站PR比較低,現在有很多鏈接鏈出去,所以想把鏈接撤下來,只留一個版權文字。
其他的WORDPRESS模板,只要找到FOOTER.PHP,就可以看到里面的一些版權鏈接信息,可這個atahualpa theme,讓我找了半天,依然無果,FOOTER.PHP里面,根本就沒有什么版權信息,也沒有鏈接,找遍了整個文件,依然無果,不得已,只好求助于GOOGLE,經過找尋,發(fā)現了解決辦法,原來atahualpa theme把版權信息寫在了FUNCTION.PHP里,下面是解決辦法:
I’m pretty sure that the output that you wish to modify in the Atahualpa theme footer,
“Powered by WordPress – Atahualpa Theme by BytesForAll”,
can be found in “functions.php”, located in the Atahualpa theme folder, starting at line number 660.
Best wishes!
果然是高手,找到這個文件,然后把版權信息的鏈接去掉,代碼就變成這個樣子了:
function footer_output($footer_content) {
$footer_content .= ‘br /Powered by WordPress the Atahualpa WP Theme by BytesForAll. Now with Tutorials Support’;
return $footer_content;
}
修改后,頁腳的樣子,沒有鏈接了
wordpress主題版權隱藏或刪除的方法:
wordpress默認主題功能模塊調用的是wordpress原程序中wp-includes文件夾中的默認代碼,我們修改的時候只需要找到原始文件,去除多余代碼即可:
1、用編輯工具dreamweaver或是UE等打開以下路徑中的文件:wp-includesdefault-widgets.php;
2、Ctrl+F搜索“?php wp_register(); ?”,找到以下代碼:
ul
?php wp_register(); ?
li?php wp_loginout(); ?/li
lia href=“?php bloginfo(‘rss2_url’); ?” title=“?php echo esc_attr(__(‘Syndicate this site using RSS 2.0’)); ?”?php _e(‘Entries abbr title=“Really Simple Syndication”RSS/abbr’); ?/a/li
lia href=“?php bloginfo(‘comments_rss2_url’); ?” title=“?php echo esc_attr(__(‘The latest comments to all posts in RSS’)); ?”?php _e(‘Comments abbr title=“Really Simple Syndication”RSS/abbr’); ?/a/li
lia href=“?php esc_attr_e( ‘’ ); ?” title=“?php echo esc_attr(__(‘Powered by WordPress, state-of-the-art semantic personal publishing platform.’)); ?”?php
/* translators: meta widget link text */
_e( ‘WordPress.org’ );
?/a/li
?php wp_meta(); ?
/ul
其中如下的三句代碼分別是控制“文章RSS”、“評論RSS”、“WordPress.org”輸出的,刪除即可:
lia href=“?php bloginfo(‘rss2_url’); ?” title=“?php echo esc_attr(__(‘Syndicate this site using RSS 2.0’)); ?”?php _e(‘Entries abbr title=“Really Simple Syndication”RSS/abbr‘); ?/a/li
lia href=“?php bloginfo(‘comments_rss2_url’); ?” title=“?php echo esc_attr(__(‘The latest comments to all posts in RSS’)); ?”?php _e(‘Comments abbr title=“Really Simple Syndication”RSS/abbr‘); ?/a/li
lia href=“?php esc_attr_e( ‘’ ); ?” title=“?php echo esc_attr(__(‘Powered by WordPress, state-of-the-art semantic personal publishing platform.’)); ?”?php
/* translators: meta widget link text */
_e( ‘WordPress.org’ );
?/a/li
去除底部“自豪地采用 WordPress”版權信息:
1、打開主題文件夾:wp-contentthemestwentyelevenfooter.php;
2、搜索找到以下代碼:
a href=“?php echo esc_url( __( ‘’, ‘twentyeleven’ ) ); ?” title=“?php esc_attr_e( ‘Semantic Personal Publishing Platform’, ‘twentyeleven’ ); ?” rel=“generator”?php printf( __( ‘Proudly powered by %s’, ‘twentyeleven’ ), ‘WordPress’ ); ?/a
3、刪除這段代碼即可,當然刪除后會什么都不顯示,這樣不是很美觀,我們可以自己添加下自己的版權信息,可以替換為以下代碼:
a href=“?php echo get_option(‘home’); ?” title=“?php bloginfo(‘name’); ?” rel=“generator”?php bloginfo(‘name’); ?/a