@charset "utf-8";
a{color:green}
c{color:Magenta}
b{color:#FF6633}
h2{color:#FF6633}



.wo-entry-title{display:none;}/*隐藏撰文标题*/
#ln-h{display:none;}/*隐藏首页*/
.img { max-width: 100%;}


/*文件名后缀色*/
.file_list span {display:inline; width:auto;background:#f60;color:#fff;font-size:12px;margin:10px 10px 0 10px ;} 

.wo-search-form {display:none;}/*隐藏搜索框*/

分类项目css：
#ln-h a,a[href^="/cat/"] {display:inline-block; } #ln-h a:link,#ln-h a:visited,a:link[href^="/cat/"],a:visited[href^="/cat/"] { font-weight:bold; font-size:14px;background-color:#FEF7DE; text-align:center; padding:1px; text-decoration:none; text-transform:uppercase; }

p{background-color:#FFC0D9D;color:#9040F0;}
#whole_body{no-repeat top #0c6;border:1px solid skyblue;max-width:auto;border-radius:1px;word-break:break-all;word-wrap:break-word;padding:6px;line-height:1.6em;}


.wo-search-form-allowed-tags{display:none;}/*禁用评论*/




// Disable support for comments and trackbacks in post types
function df_disable_comments_post_types_support() {
$post_types = get_post_types();
foreach ($post_types as $post_type) {
if(post_type_supports($post_type, 'comments')) {
remove_post_type_support($post_type, 'comments');
remove_post_type_support($post_type, 'trackbacks');
}
}
}
add_action('admin_init', 'df_disable_comments_post_types_support');
// Close comments on the front-end
function df_disable_comments_status() {
return false;
}
add_filter('comments_open', 'df_disable_comments_status', 20, 2);
add_filter('pings_open', 'df_disable_comments_status', 20, 2);
// Hide existing comments
function df_disable_comments_hide_existing_comments($comments) {
$comments = array();
return $comments;
}
add_filter('comments_array', 'df_disable_comments_hide_existing_comments', 10, 2);
// Remove comments page in menu
function df_disable_comments_admin_menu() {
remove_menu_page('edit-comments.php');
}
add_action('admin_menu', 'df_disable_comments_admin_menu');
// Redirect any user trying to access comments page
function df_disable_comments_admin_menu_redirect() {
global $pagenow;
if ($pagenow === 'edit-comments.php') {
wp_redirect(admin_url()); exit;
}
}
add_action('admin_init', 'df_disable_comments_admin_menu_redirect');
// Remove comments metabox from dashboard
function df_disable_comments_dashboard() {
remove_meta_box('dashboard_recent_comments', 'dashboard', 'normal');
}
add_action('admin_init', 'df_disable_comments_dashboard');
// Remove comments links from admin bar
function df_disable_comments_admin_bar() {
if (is_admin_bar_showing()) {
remove_action('admin_bar_menu', 'wp_admin_bar_comments_menu', 60);
}
}
add_action('init', 'df_disable_comments_admin_bar');