WorePress主题TwentyTen删除自豪地采用WordPress

2020年03月22日

自豪地采用WordPress 这是在WordPress右下角显示的WordPress版权信息,但是因为它显示的位置让页面底部的排版显得不太好看,所以我将这一块删除了,另外添加了使用WordPress驱动的版权字眼。每一个主题的代码都不一样,但有一样相同的是,这行代码都在wp-content/themes/xxx/footer.php 这一个文件里,xxx是你当前主题目录。例如我的另一个博客 https://jiayu.mybabya.com/ 使用的是 twentyten 这一个主题,所以这个教程以这个主题为例。

演示链接:https://jiayu.mybabya.com/

演示前:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<!--?php printf( __( 'Proudly powered by %s.', 'twentyten' ), 'WordPress' ); ?-->
<!--?php printf( __( 'Proudly powered by %s.', 'twentyten' ), 'WordPress' ); ?-->

 

或者全部删除这一段代码

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<div id="site-generator">
<!--?php
/**
* Fires before the Twenty Ten credits in the footer.
*
* @since Twenty Ten 1.0
*/
do_action( 'twentyten_credits' );
?-->
<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyten' ) ); ?>" class="imprint" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyten' ); ?>">
<!--?php
/* translators: %s: WordPress */
printf( __( 'Proudly powered by %s.', 'twentyten' ), 'WordPress' );
?-->
</a>
</div><!-- #site-generator -->
<div id="site-generator"> <!--?php /** * Fires before the Twenty Ten credits in the footer. * * @since Twenty Ten 1.0 */ do_action( 'twentyten_credits' ); ?--> <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyten' ) ); ?>" class="imprint" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyten' ); ?>"> <!--?php /* translators: %s: WordPress */ printf( __( 'Proudly powered by %s.', 'twentyten' ), 'WordPress' ); ?--> </a> </div><!-- #site-generator -->
			

 

修改完成样式:


sicnature ---------------------------------------------------------------------
I P 地 址: 3.141.4.8
区 域 位 置: 美国
系 统 信 息: 美国
Original content, please indicate the source:
同福客栈论坛 | 蟒蛇科普海南乡情论坛 | JiaYu Blog
sicnature ---------------------------------------------------------------------
Welcome to reprint. Please indicate the source https://myzhenai.com/post/3189.html

没有评论

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注