web,direction,planning,graphicdesign

2011年9月2日金曜日

WordPress the_excerptで文字数・文末の変更

wp-content/plugins/wp-multibyte-patchの中のwpmp-config-sample.phpをwpmp-config.phpにリネーム。
$wpmp_conf['excerpt_mblength'] = 110;を任意に変更。

function.php

文字数変更
function new_excerpt_mblength($length) {
return 20;
}
add_filter('excerpt_mblength', 'new_excerpt_mblength');

文末変更

function new_excerpt_more($more) {
return '.....';
}
add_filter('excerpt_more', 'new_excerpt_more');

wordpress TinyMCE Advancedのエディタ画面のスタイルのカスタマイズ

/wp-includes/js/tinymce/themes/advanced/skins/wp_theme/content.css

でスタイルを変更

/wp-includes/js/tinymce/themes/advanced/skins/wp_theme/ui.css

331行目付近から「Formats」以下を変更
管理画面も変更可

フォロワー