LoginSignup
3
4

More than 5 years have passed since last update.

All in One SEO Packの title, descriptionをプログラムで書き換える

Posted at

All in One SEO Packを利用すると、titleや descriptionを自由に書き換えることができます。しかし、設定しきれない画面のタイトルを書き換えたい場合は、functions.phpで変更することができます。

add_filter( 'aioseop_title', 'aioseop_title_func' );

function aioseop_title_func( $title ) {
    $title = 'new title';

    return $title;
}

descriptionは次のように書き換えます

add_filter( 'aioseop_description', 'aioseop_description_func' );

function aioseop_description_func( $description ) {
    $description = 'new description';

    return $description;
}
3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4