サイトアイコン WEB-Geek-Site.com

WordPress4.5.3 「短縮URLを取得」ボタンを表示させる方法

WordPressをアップロードしたら「短縮URLを取得」ボタンが消えてしまった。。。(汗)

これがないとちょっと不便なので、ググってみたら解決法が載っていたので早速トライ!
無事表示されました!!

テーマフォルダにある「functions.php」に下記を追加するだけでOK.

 

[php]add_filter( ‘get_shortlink’, function( $shortlink ) {return $shortlink;} );[/php]

 

参考:
http://sencale.com/wordpress4-4でも「短縮urlを取得」ボタンを表示/
https://wptavern.com/how-to-restore-the-get-shortlink-button-in-wordpress-4-4

モバイルバージョンを終了