blog
copyright ©
creamu Inc. All Rights Reserved.
art direction & design: Kunitaka Kawashimo
code, interaction & photography: creamu Inc.
category: Technology

WordPressのfunctions.phpを編集する便利なテクニック25+

Pocket

WordPressのfunctions.phpを編集する便利なテクニック25+ 100768523/ Hemera/ Thinkstock WordPressをカスタマイズしたい。 そんなときにおすすめなのが、『25+ Extremely Useful Tricks for the WordPress Functions File』。WordPressのfunctions.phpを編集する便利なテクニック集です。 WordPressのバージョンを非表示にして、クライアントにアップグレードのアラートを見せないようにしたり、ダッシュボードのフッターを編集したりと、いろいろとあります。 WordPressのバージョンを非表示にする
function wpbeginner_remove_version() {
return '';
}
add_filter('the_generator', 'wpbeginner_remove_version');
ダッシュボードのフッター情報を変更する
    function remove_footer_admin () {
echo 'Fueled by <a href="http://www.wordpress.org" target="_blank">WordPress</a> | Designed by <a href="http://www.uzzz.net" target="_blank">Uzzz Productions</a> | WordPress Tutorials: <a href="http://www.wpbeginner.com" target="_blank">WPBeginner</a></p>';
}
add_filter('admin_footer_text', 'remove_footer_admin');
カスタムフィールドを使って著者を切り替える
    add_filter( 'the_author', 'guest_author_name' );
add_filter( 'get_the_author_display_name', 'guest_author_name' );
function guest_author_name( $name ) {
global $post;
$author = get_post_meta( $post->ID, 'guest-author', true );
if ( $author )
$name = $author;
return $name;
}
結構便利そうなのがあるので、WordPressを使う方は一度見てみてください。 25+ Extremely Useful Tricks for the WordPress Functions File んーまた新たな壁が。早急に軌道修正しなくては。