资源说明:
id="li-comment-">
*************************************************************
=============================================================
*********style.css********
=============================================================
1.all the font/font-family ---> arial, helvetica, sans-serif;
-------------------------------------------------------------
2.body ---> color:#333;
-------------------------------------------------------------
3..widget {font-size:1.3em;}
-------------------------------------------------------------
4..comment-author {
1. font-weight: bold;
2. font-size: 1.5em;
3. line-height: 1.1;
}
delete => font-weight:bold;
-------------------------------------------------------------
5..comment-meta {font-size:1.1em; font-style:italic; color:#777;}
delete => font-style:italic;
--------------------------------------------------------------
6.modify: #pp-subscribe a {padding:5px 5px 5px 50px; font-weight:bold; font-size:14px; line-height:33px; display:block;}
delete: #pp-feed
--------------------------------------------------------------
7..entry-title a:hover, .entry-byline a:hover, .navigation a:hover {
color: black;[delete]
}
[modify]
.entry-content a {
font-family: arial, helvetica, sans-serif;
text-decoration: none;
border-bottom: 1px dotted;
}
--------------------------------------------------------------
8..comment-author cite {font-style:normal;color: #0070C5; }
--------------------------------------------------------------
9..comment-counter{font-size:1em; float:right;}
**************************************************************
==============================================================
**********wp-syntex********
==============================================================
1.geshi.php:
if ($escaped == "true") $code = htmlspecialchars_decode($code);
======>
if ($escaped != "false") $code = htmlspecialchars_decode($code);
----------------------------------------------------------------
2.wp-syntex.css:
background-color: #EEEEEE;
.wp_syntax pre {
margin: 0;
width: auto;
float: none;
clear: none;
overflow: visible;
font-size: 12px;
line-height: 1.333;
white-space: pre;
}
-------------------------------------------------------------------
3.java.php:
'KEYWORDS' => array(
1 => 'color: #7F0055; font-weight: bold;',
2 => 'color: #7F0055; font-weight: bold;',
3 => 'color: #000000;',
4 => 'color: #7F0055; font-weight: bold;'
),
'METHODS'=>array{
1=>'color:#000000;',
2=>'color:#000000;'
}
'BRACKETS'=>array{
0=>'color:#000000;'
}
'ESCAPE_CHAR'=>array{
0=>'color:#7F0055;font-weight:bold;'
}
----------------------------------------------------------------------
**************************************************************
==============================================================
**********subscribe.php********
==============================================================
*******delete********:
comment_approved == '0') : ?>
Subscribe to this blog
--------------------------------------------------------------------------------
*******add*******:
Subscribe in a reader
Follow me on Twitter
**************************************************************
==============================================================
**********comments.php********
==============================================================
'ol','type'=>'comment','callback'=>'mytheme_comment')); ?>
**************************************************************
************************* *******Blog backup******* ************************* ************************** Custom changes as below: ************************** =========================================================== *********php files******** =========================================================== -------------------------- ------1.functions.php----- -------------------------- /** * Prevent wp from decoding. */ remove_filter('the_content', 'wptexturize'); /** * Get our wp_nav_menu() fallback, wp_page_menu(), to show a home link. */ function my_page_menu_args( $args ) { $args['show_home'] = true; return $args; } add_filter( 'wp_page_menu_args', 'my_page_menu_args' ); ---------------------------------------------------------------- functions.php: the_content('阅读全文'); ---------------------------------------------------------------- function mytheme_comment($comment, $args, $depth) { static $comment_number; $comment_number++; $GLOBALS['comment'] = $comment; ?>
本源码包内暂不包含可直接显示的源代码文件,请下载源码包。