てくてくあるく

WordPress の テーマ とか プラグイン に ついて 勉強しています

Web App Manifest lacks a short name entry

The short_name is a short version of your website’s name. It is displayed when there is not enough space for the full name, for example with the site icon on a phone’s homescreen. It should be a maximum of 12 characters long. You currently may use web_app_manifest filter to set the short name, for example in your theme’s functions.php.

って 言われてて何かな~ と思って 調べました

どうやらこれは PWAプラグインを使っていると 表示されるみたいです

PWA – WordPress プラグイン | WordPress.org 日本語
https://ja.wordpress.org/plugins/pwa/

Manifest の中に short_name が 出力されていませんよ
っていうことみたいです

Ver 0.3.0 以前は ブログタイトルから 先頭の12文字を short_name として 出力していたみたいですが
Ver 0.3.0 からは 出力しなくなりました

なので 自前で フィルターを 用意しないといけません

add_filter( 'web_app_manifest', function( $manifest ) {
  $manifest['short_name'] = 'てくある';
  return $manifest;
} );

こんな感じですね

これで 改善項目から 表示されなくなりました

Related Article

最近 の SEO の 動向 について 調べてみた (2018-04)

詳細へ »

サイトヘルス から AMPの改善が必要 って 言われた

詳細へ »