當前位置:首頁 » 版權產權 » 頁腳版權

頁腳版權

發布時間: 2020-11-22 00:07:35

A. 如何在word2010中同時插入左下角「版權所有····」和「頁碼」

打開視圖,然後是頁眉和頁腳,在頁腳中輸入版權所有……,再點擊頁眉頁腳工具欄中的插入頁碼按鈕

B. 關於DISCUZ的頁腳版權問題

你成功去除了嗎?
我看到發帖有點晚了。

在後台》全局》站點信息》網站第三方統計代碼》輸入<style>就可以了,這是最偷懶的辦法,或者ftp區footer改。

C. 如何去掉或者取消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;
}

修改後,頁腳的樣子,沒有鏈接了

D. 版權聲明怎麼寫

版權聲明是指作品權利人對自己創作作品的權利的一種口頭或書面聲明,一般版權聲明應該包括權利歸屬、作品使用准許方式、責任追究等方面的內容。諸如平時看文章時最後會有一個嚴禁轉載的說明,其實這就是版權聲明。一份合格版權聲明應該包括聲明的具體內容(當事人、標的、履行、違約、價款、糾紛解決方式、數量、質量),版權所有人的個人信息,如版權人的聯系方式、地址等信息。常見的版權聲明有如下這幾種:1.版權歸本XXX網站或原作者XXX所有;2.未經原作者允許不得轉載本文內容,否則將視為侵權;3.轉載或者引用本文內容請註明來源及原作者;4.對於不遵守此聲明或者其他違法使用本文內容者,本人依法保留追究權等。

E. 如何在WORD中頁眉頁腳聲明版權45

直接插入頁眉和頁腳,將位置設為底端右側。 1、具體步驟:插入—頁眉和頁腳—位置回—選擇「底答端右側」即可。 2、圖示: (1)設置頁碼 (2)插入豎排文本框 (3)將下端頁碼剪切至文本框中,輪廓和填充顏色設置為「無」即可

F. 求幫寫div+css底部版權代碼

footer是HTML5的一個標簽,無需div,你要加也可以。
html:

<!--底部版權-->
<footer>Copyright (C) Home_Travlling 2016-2060, All Rights Reserved TCPICP֤041189隨便寫,反正是測試</footer>

css:
/* 頁腳 */
footer {
position: fixed;
background-color: rgba(43, 166, 166, 0.5);
color: #FFF;
bottom: 0;
left: 0;
right: 0;
text-align: center;
height: 20px;
line-height: 20px;
}

G. 網頁最底部版權信息這一塊正規應該叫什麼

沒有這么問的,復也不知道怎制么回答你。
版權所有 &; 2008——這是版權聲明
主辦:xxxxx 豫ICP備xxxxx號——這是工信部網站備案號,必須依法申請及在主頁寫明。
地址:xxxxx 電子郵箱:xxxxx——這是聯系方式,沒有法律規定必須有。
技術支持:xxxxxxxxxx公司——這是技術支持公司的廣告

H. 這個wordpress主題Catch Responsive如何修改頁腳的版權信息

在儀表盤界面,按照以下順序進入編輯界面:外觀 -->編輯,選擇右側的catchresponsive-default-options.php。第4步就是組合的字元串:

$catchresponsive_content['left']是原主題左邊的:Copyright © 2015 xxx. All Rights Reserved.

$catchresponsive_content['right']是原主題右邊的:Catch Responsive by Catch Themes


可以看著自己改,或者想改成什麼樣子你發我

I. 怎樣修改Magento的頁腳的版權

要修改Magento的頁腳,我們必須改動兩個地方:

一個是Magento 自己創建的,在ADMIN可以修改(CMS > Static Block); 另外一部分是以.phtml / .php / .xml 格式文件存於設計文件夾中。

XML文件位置:

app/design/frontendlayout/page.xml

你將找到關於頁腳的代碼:

<block type="page/html_footer" name="footer" as="footer" template="page/html/footer.phtml">

<block type="page/switch" name="store_switcher" as="store_switcher" template="page/switch/stores.phtml"/>

<block type="page/template_links" name="footer_links" as="footer_links" template="page/template/links.phtml"/>

</block>另外XML文件位置:

app/design/frontendlayout/cms.xml

你將找到關於頁腳的代碼:

<reference name="footer">

<block type="cms/block" name="cms_footer_links" before="footer_links">

<!–

The content of this block is taken from the database by its block_id.

You can manage it in admin CMS -> Static Blocks

–>

<action method="setBlockId"><block_id>footer_links</block_id></action>

</block>

</reference>

你可以看到PAGE.XML調用頁腳文件,是通過文件:

app/design/frontendtemplate/page/html/footer.phtml

這個文件包含了一個方法去調用些子HTML文件($this->getChildHtml();)

app/design/frontendtemplate/page/switch.phtml

app/design/frontendtemplate/page/template/links.phtml

一個重要的關於頁腳的子HTML文件是:

結尾為 .phtml的文件 , 在BLOCK.PHP文件中可以找到 「$this->getLinks()」 這個方法,這個方法控制了模板的腳本調用。

所控制的模板對應位置在:

app/code/core/mage/page/Template/Links.php

但是,我們可以發現,這兒只能找到一部分的頁腳鏈接,其他的在哪兒呢?

<!–contacts.xml–>

<reference name="footer_links">

<action method="addLink" translate="label title" mole="contacts" ifconfig="contacts/contacts/enabled"><label>Contact Us</label><url>contacts</url><title>Contact Us</title><prepare>true</prepare></action>

</reference>

<!–rss.xml–>

<reference name="footer_links">

<action method="addLink" translate="label title" mole="rss" ifconfig="rss/config/active"><label>RSS</label><url>rss</url><title>RSS testing</title><prepare>true</prepare><urlParams/><position/><li/><a>class="link-feed"</a></action>

</reference>

<!–catalogsearch.xml–>

<reference name="footer_links">

<action method="addLink" translate="label title" mole="catalogsearch" ifconfig="catalog/seo/search_terms"><label>Search Terms</label><url helper="catalogsearch/getSearchTermUrl" /><title>Search Terms</title></action>

<action method="addLink" translate="label title" mole="catalogsearch"><label>Advanced Search</label><url helper="catalogsearch/getAdvancedSearchUrl" /><title>Advanced Search</title></action>

</reference>

<!–catalog.xml–>

<reference name="footer_links">

<action method="addLink" translate="label title" mole="catalog" ifconfig="catalog/seo/site_map"><label>Site Map</label><url helper="catalog/map/getCategoryUrl" /><title>Site Map</title></action>

</reference>

你可以任意修改,刪除這四個.xml 或者創建新的。

到目前為止,我們已經知道了所有的頁腳文件,如我開頭所說的,其他頁腳文件都在Admin > CMS > Static Blocks裡面

J. word文檔如何去除頁尾處的版權標識

一種情況是:放在頁腳的文字或者圖片,相信上面已經說過你也明白了,
還有一種情況是,放的圖片或者文字在正文的下面,這樣看起來不能操作一樣,其實道理是一樣的,你激活頁眉或者頁腳,然後就可以去動它了。

熱點內容
美發店認證 發布:2021-03-16 21:43:38 瀏覽:443
物業糾紛原因 發布:2021-03-16 21:42:46 瀏覽:474
全國著名不孕不育醫院 發布:2021-03-16 21:42:24 瀏覽:679
知名明星確診 發布:2021-03-16 21:42:04 瀏覽:14
ipad大專有用嗎 發布:2021-03-16 21:40:58 瀏覽:670
公務員協議班值得嗎 發布:2021-03-16 21:40:00 瀏覽:21
知名書店品牌 發布:2021-03-16 21:39:09 瀏覽:949
q雷授權碼在哪裡買 發布:2021-03-16 21:38:44 瀏覽:852
圖書天貓轉讓 發布:2021-03-16 21:38:26 瀏覽:707
寶寶水杯品牌 發布:2021-03-16 21:35:56 瀏覽:837