wordpress

使用

Crayon Syntax Highlighter插件

<pre>粘贴code在这里</pre>

 

数据库备份和恢复

mysqldump -u root -p mytest > mytest.sql

mysql -u root -p mytest < mytest.sql

 

删掉关于标题,在twentytwelve/content-page.php中,删掉一下代码

<header class="entry-header">
			<?php if ( ! is_page_template( 'page-templates/front-page.php' ) ) : ?>
			<?php the_post_thumbnail(); ?>
			<?php endif; ?>
			<h1 class="entry-title"><?php the_title(); ?></h1>

		</header>

 

在twentytwelve/header.php中加入红色代码,注意放其他位置会导致布局变形,不知为啥。

 <head>

<meta charset="<?php bloginfo( 'charset' ); ?>" />

<link rel="stylesheet" href="http://www.codeeply.com/stackedit/public/res-min/themes/base.css"/>

<meta name="viewport" content="width=device-width" />

<title><?php wp_title( '|', true, 'right' ); ?></title>

<link rel="profile" href="http://gmpg.org/xfn/11" />

<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />

<?php // Loads HTML5 JavaScript file to add support for HTML5 elements in older IE versions. ?>

<!--[if lt IE 9]>

<script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script>

<![endif]-->

<?php wp_head(); ?>

</head>

 

在twentytwelve/content.php中把这段代码删,就可以把摘要中那个碍眼的评论去掉。

<?php if ( comments_open() ) : ?>
				<div class="comments-link">
					<?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentytwelve' ) . '</span>', __( '1 Reply', 'twentytwelve' ), __( '% Replies', 'twentytwelve' ) ); ?>
				</div><!-- .comments-link -->
			<?php endif; // comments_open() ?>

 

在twentytwelve/footer.php中把footer的代码改成,就可以改掉原版的那句土话了,顺便加上copyright。

<footer id="colophon" role="contentinfo">
		<div class="site-info">
			<?php do_action( 'twentytwelve_credits' ); ?>
<p>Copyright © 2013-2014</p>
		</div><!-- .site-info -->
	</footer>

 

去除“您可以使用这些HTML标签和属性:”的方法,

 在wp-includes/comment-template.php寻找代码<?php echo $args['comment_notes_after']; ?>,并删了。

 

主页只显示摘要:

在twentytwelve/content.php中增加红色代码

<?php if ( is_search() || is_home()) : // Only display Excerpts for Search ?>

你可能感兴趣的:(wordpress)