Wordpress 開発 小ネタ

ログ出力関係

エラーログ

wp-config.php

//ログ出力ここをtrueに
define('WP_DEBUG', true);
define('WP_DEBUG_DISPLAY', true);
define('WP_DEBUG_LOG', true);

Debug Barプラグイン

SQLが表示されるため便利 f:id:happy_teeth_ago:20190619075119p:plain

プラグインを入れたら wp-config.php に追記する

define('WP_DEBUG', true);

define('WP_DEBGUG_SAVEQUERIES', true);


表示に関するプラグイン

Custom Post Type UI

カスタム投稿タイプを利用するのに必要 f:id:happy_teeth_ago:20190619081559p:plain

Advanced Custom Fields

管理画面の入力をカスタマイズするプラグイン

f:id:happy_teeth_ago:20190619081631p:plain