A. 如何給WordPress博客文章底部自動加入版權聲明和鏈接
在安自裝目錄wp-content/themes下找到single.php文件,然後到文件中如下的一行代碼,
1
<?php get_template_part( 'content', 'single' ); ?>
在這一行代碼後面加入下面的代碼?保存就可以啦。
1
2
3
4
5
6
7
8
<!--start-->
<p align="center" style="color:#999966">原創內容,轉載請註明:<strong>
<a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></strong>
[<a href="<?php echo get_settings('home'); ?>"><?php echo get_settings('home'); ?>
</a>] 謝謝
</br>本文鏈接地址: <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>">
<?php the_permalink(); ?></a></p>
<!--end-->
B. wordpress模板是買的,但是底部有個版權想去掉,如何修改footer.php裡面只有
這個應該還是能找到的,可以把這個代碼
<!-- Footer begin -->
<div class="footer"></div>
<!-- Footer end -->
<?php wp_footer(); ?>
去掉看看有沒有,如果沒有就說明一般是wp_footer調用的,如果還存在,可能就是從別的位置調用的,要慢慢查
C. WordPress底部主題版權、作者和光榮地使用WordPress怎麼去掉
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>
<li><a 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>
<li><a 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>
<li><a href=「<?php esc_attr_e( 『http://wordpress.org/』 ); ?>」 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」輸出的,刪除即可:
<li><a 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>
<li><a 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>
<li><a href=「<?php esc_attr_e( 『http://wordpress.org/』 ); ?>」 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-.php;
2、搜索找到以下代碼:
<a href=「<?php echo esc_url( __( 『http://wordpress.org/』, 『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>
D. 怎麼在文章底部加入版權說明 我用的是WordPress。。。。。。。。。。
有三種方法,一:安裝插件,你在後台插件頁面,或者網路搜「wordpress 版權插件」回之類的關鍵字,答會有一大堆文章版權插件等你安裝,找一個你認為適合你的。
二:在single.php頁面添加代碼,在代碼:<$php the_content(); $>下面添加版權說明代碼,一些主題可能會有一些不同。
三:第二種方法的延伸,其實這方法適合那些遇到問題的新手,就是找一個國外的,或者國內比較多人用的主題,然查看他的代碼,你找到single。php文件,裡面絕對有你要的代碼。前提是這個主題的文章模板底部也有版權說明
E. 如何去掉或者取消WORDPRESS主題中HEADER和FOOTER中的版權
很多人在下載了自己中意的Wordpress主題,但頁腳的鏈接去不能去除,今天在幫朋友裝一個Wordpress博客的時候就遇到這事,在網路了好久沒收到什麼結果,沒想到最後以一個不可思議的辦法來解決這個事情,但我們並不建議去掉人家的版權鏈接,這里只做參考學習。
一般為統計博客版本信息等原因,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那依然不能修改,改了就又會出現那句話。
查找了有關資料發現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過程中,發現功能版塊除了登入\登出,管理,Feed以外,還有一個wordpress鏈接。
太討厭了,博客底部本來就有一個wordpress.org的鏈接,結果現在又有一個鏈接,光一個頁面就有2個鏈接,下面,我還是教大家如何去掉它好了。
找到你的博客安裝目錄,在wp_includes文件夾下面有一個default-widgets.php的文件,並找到以下代碼
<li><a title=」<?php echo esc_attr(__(『Powered by WordPress, state-of-the-art semantic personal publishing platform.』)); ?>」 href=」http://wordpress.org/」>WordPress.org</a></li>
我們把這一行所在的代碼全部刪除了。
注釋掉或者直接刪掉。這樣側欄上的wordpress.org鏈接我們就去掉了。
在wordpress中,一般情況下,在header的信息總是會包含wordpress的版本信息,如何去除這個內容呢,很簡單,在function.php中添加
remove_action(『wp_head』, 『wp_generator』);
就可以去除wordpress的版權信息了。
在wp博客中,有一個常見的安全技巧是:不要在你的wp中顯示出你的版本信息。許多開發者或者使用者都常常將wp的版本信息顯示了出來,但這樣可能會被一些人利用該版本的漏洞對你的博客進行攻擊。很多人對此比較模糊,這樣可能就會給你的博客帶來安全性的問題。
默認情況下,當wp_head() 函數在header.php文件的head標簽中被調用時wordpress就執行了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,經過找尋,發現了解決辦法,原來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;
}
修改後,頁腳的樣子,沒有鏈接了
F. wordpress4.9底部版權如何修改
wordpress4.9底部抄版權修改方法詳見:https://jingyan..com/article/f25ef254523590482c1b8220.html
G. WORDPRESS底部版權信息修改
將<?php echo get_theme_mod( 'right', 'your name' ); ?>
這段直接修改為「2014 車世界」就OK了
H. 如何給wordpress博客文章底部自動加入版權聲明和鏈接
在安裝目錄抄wp-content/themes下找到single.php文件,然後到文件中如下的一行代碼,
<?phpget_template_part('content','single');?>
在這一行代碼後面加入下面的代碼?保存就可以啦。
<!--start-->
<palign="center"style="color:#999966">原創內容,轉載請註明:<strong>
<ahref="<?phpbloginfo('url');?>"><?phpbloginfo('name');?></a></strong>
[<ahref="<?phpechoget_settings('home');?>"><?phpechoget_settings('home');?>
</a>] 謝謝
</br>本文鏈接地址:<ahref="<?phpthe_permalink()?>"title="<?phpthe_title();?>">
<?phpthe_permalink();?></a></p>
<!--end-->
I. wordpress主題修改底部版權
一、工具:電腦、wordpress
二、操作步驟:
【1】登錄wordpress後台,找到「外觀」-「編輯」。
【4】最後點擊更新文件,修改結束,刷新首頁看修改效果吧。
注意事項:修改之前,先備份一份,以免修改錯誤回不到初始了。
J. 精智wordpress主題底部的版權鏈接能去掉嗎
這個是可以來去掉的,源但是你需要在網站模板裡面的foot.php裡面進行修改。只需要找著它底部版權鏈接,將那一塊兒直接刪除掉。並且保存在前台發現就可以了。方法有好幾種,你可以通過後台直接找到這個文件進行修改,他的原代碼啊,完了保存就可以在前台刷新看到效果。當然你也可以直接通過。flashfxp連接到你的主機空間,將這個foot.php文件直接導到你的電腦上,再用dw打開。修改剛才那段代碼,保存在盛傳到你的空間就可以了。