サイトヘルス から PWAの改善が必要 って 言われた
この記事は 2020年 4月 2日 に書かれた記事です。
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 useweb_app_manifest
filter to set the short name, for example in your theme’sfunctions.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;
} );
こんな感じですね
これで 改善項目から 表示されなくなりました