custom image headerの定数と注意 : WordPress

Pocket

costom image headerで必要な定数を定義しないと下記の警告が出る(例はHEADER_TEXTCOLORを定義しない場合)。

Notice: Use of undefined constant HEADER_TEXTCOLOR - assumed 'HEADER_TEXTCOLOR' in /Applications/XAMPP/xamppfiles/htdocs/wordpress/wp-admin/custom-header.php on line 489

定義の必要な定数はCodexを参照。

カスタムイメージヘッダーが動作するには、4つの定数を定義しなければなりません。

define(‘HEADER_TEXTCOLOR’, ‘ffffff’);
define(‘HEADER_IMAGE’, ‘%s/images/default_header.jpg’); // %s is the template dir uri
define(‘HEADER_IMAGE_WIDTH’, 775); // use width and height appropriate for your theme
define(‘HEADER_IMAGE_HEIGHT’, 200);

コメント

No comments yet.

コメントの投稿

改行と段落タグは自動で挿入されます。
メールアドレスは表示されません。