Custom Post Widget 2.02 をインストールしたところ、投稿欄に「アップロード/挿入」が表示されなくなってしまいました。
該当箇所のcssを修正してみましたが、うまくいかなったので、プラグインフォルダにある、
/wp-content/plugins/custom-post-widget/post-widget.php
を以下のように修正しました。
これでなんとか使えるようになりました。
// Only add content_block icon above posts and pages function check_post_type_and_remove_media_buttons() { global $current_screen; if( 'content_block' != $current_screen->post_type ) add_filter('media_buttons_context', 'add_content_block_icon' ); } //add_action('admin_head','check_post_type_and_remove_media_buttons');この行を//でコメントアウト require_once( CUSTOM_POST_WIDGET_DIR . '/popup.php' );
コメントを残す