页脚版权
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文档如何去除页尾处的版权标识
一种情况是:放在页脚的文字或者图片,相信上面已经说过你也明白了,
还有一种情况是,放的图片或者文字在正文的下面,这样看起来不能操作一样,其实道理是一样的,你激活页眉或者页脚,然后就可以去动它了。