下載后,上傳到 /wp-content/plugins/目錄下,解壓,
在后臺插件管理里面啟用。
在文章發(fā)布窗口就可以看到按鈕了。
直接把復(fù)制到上面框里,確定就行了,有幾十種格式可選。我們用默認的就行。
最終效果如下:
]]>編輯窗口增加了添加附件功能
及代碼高亮功能
代碼高亮效果如下:
【警告】使用前備份好這個文件
\include\inc\inc_fun_funAdmin.php
\include\dialog\select_images.php
\include\dialog\select_media.php
\include\dialog\select_soft.php
選擇程序?qū)?yīng)的編碼文件夾,對應(yīng)的覆蓋進去,清空瀏覽器臨時文件,刷新后臺,使用ckeditor編輯器。
前臺模板頁面顯示代碼高亮,在內(nèi)容模板里加入以下代碼即可。
<link rel="stylesheet" href="/include/ckeditor/plugins/codesnippet/lib/highlight/styles/monokai_sublime.css">
<script src="/include/ckeditor/plugins/codesnippet/lib/highlight/highlight.pack.js"></script>
<style>
<!--解決代碼換行+圓角-->
pre{font-size:inherit;line-height: inherit;font-family: inherit;white-space: pre-wrap;white-space: -moz-pre-wrap;white-space: -pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;word-break: break-all;border-radius: 4px;}
</style>
百度網(wǎng)盤1
提取碼: w8j6
百度網(wǎng)盤2
提取碼: i1fu
]]>
為了去掉分類鏈接中category目錄,可以使用WP No category Base?插件。還有通過在固定鏈接中的category寫上英文的句號來去除category的方法,本著能使用代碼盡量不使用插件的原則,我們就使用代碼來去掉category。復(fù)制下面代碼,粘貼到你網(wǎng)站使用的主題的模板函數(shù)文件 functions.php 文件中即可:
//去除分類標志代碼
add_action( 'load-themes.php', 'no_category_base_refresh_rules');
add_action('created_category', 'no_category_base_refresh_rules');
add_action('edited_category', 'no_category_base_refresh_rules');
add_action('delete_category', 'no_category_base_refresh_rules');
function no_category_base_refresh_rules() {
global $wp_rewrite;
$wp_rewrite -> flush_rules();
}
// register_deactivation_hook(__FILE__, 'no_category_base_deactivate');
// function no_category_base_deactivate() {
// remove_filter('category_rewrite_rules', 'no_category_base_rewrite_rules');
// // We don't want to insert our custom rules again
// no_category_base_refresh_rules();
// }
// Remove category base
add_action('init', 'no_category_base_permastruct');
function no_category_base_permastruct() {
global $wp_rewrite, $wp_version;
if (version_compare($wp_version, '3.4', '<')) {
// For pre-3.4 support
$wp_rewrite -> extra_permastructs['category'][0] = '%category%';
} else {
$wp_rewrite -> extra_permastructs['category']['struct'] = '%category%';
}
}
// Add our custom category rewrite rules
add_filter('category_rewrite_rules', 'no_category_base_rewrite_rules');
function no_category_base_rewrite_rules($category_rewrite) {
//var_dump($category_rewrite); // For Debugging
$category_rewrite = array();
$categories = get_categories(array('hide_empty' => false));
foreach ($categories as $category) {
$category_nicename = $category -> slug;
if ($category -> parent == $category -> cat_ID)// recursive recursion
$category -> parent = 0;
elseif ($category -> parent != 0)
$category_nicename = get_category_parents($category -> parent, false, '/', true) . $category_nicename;
$category_rewrite['(' . $category_nicename . ')/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$'] = 'index.php?category_name=$matches[1]&feed=$matches[2]';
$category_rewrite['(' . $category_nicename . ')/page/?([0-9]{1,})/?$'] = 'index.php?category_name=$matches[1]&paged=$matches[2]';
$category_rewrite['(' . $category_nicename . ')/?$'] = 'index.php?category_name=$matches[1]';
}
// Redirect support from Old Category Base
global $wp_rewrite;
$old_category_base = get_option('category_base') ? get_option('category_base') : 'category';
$old_category_base = trim($old_category_base, '/');
$category_rewrite[$old_category_base . '/(.*)$'] = 'index.php?category_redirect=$matches[1]';
//var_dump($category_rewrite); // For Debugging
return $category_rewrite;
}
// Add 'category_redirect' query variable
add_filter('query_vars', 'no_category_base_query_vars');
function no_category_base_query_vars($public_query_vars) {
$public_query_vars[] = 'category_redirect';
return $public_query_vars;
}
// Redirect if 'category_redirect' is set
add_filter('request', 'no_category_base_request');
function no_category_base_request($query_vars) {
//print_r($query_vars); // For Debugging
if (isset($query_vars['category_redirect'])) {
$catlink = trailingslashit(get_option('home')) . user_trailingslashit($query_vars['category_redirect'], 'category');
status_header(301);
header("Location: $catlink");
exit();
}
return $query_vars;
}
這段去掉分類鏈接中category的代碼,其實就是WP No category Base 插件的主體代碼,我們可以不安裝這個插件,直接通過主題函數(shù)來解決這個問題。插件用多了會影響網(wǎng)站訪問速度,給服務(wù)器帶來壓力。不管安裝插件或者用代碼有可能會出現(xiàn)404頁面,可能是因為%post_id%.html(本站設(shè)置的固定鏈接)的偽靜態(tài)失效。只要登錄后臺→設(shè)置→固定鏈接設(shè)置頁面,隨意改一下固定鏈接格式,然后再改回自己正常用的符合網(wǎng)站偽靜態(tài)的固定鏈接格式,不行就多改幾次。切記要把所有緩存清除后嘗試。
]]>