• 以下の条件下でプレビュー表示されません。
    ?固定ページのみ表示されない。(投稿は問題ない)
    ?新規作成から下書き保存した際のプレビューは表示される。
    ?一度公開したページに関しては、表示されなくなる。下書きに戻しても表示されない。
    ?カスタムフィールドがリビジョンに反映されない。

    どなたか分かる方いらっしゃいませんか?

    • This topic was modified 3 years, 4 months ago by Yui.
    • This topic was modified 3 years, 4 months ago by rami2227.
    • This topic was modified 3 years, 4 months ago by rami2227.
Viewing 1 replies (of 1 total)
  • Thread Starter rami2227

    (@rami2227)

    function add_register_pages( $settings, $id ) {
    	// HOME
    	$home_sulg = get_page_by_path('home');
    	$home_id = $home_sulg->ID;
    
    	if ( $id == $home_id || is_preview() ) {
    		$settings[] = add_cf_home_group();
    	}
    
    	// 共通設定
    	$settings[] = add_cf_common_group();
    
    	return $settings;
    }

    条件分岐をしたら、プラビュー表示がおかしいです。

    • This reply was modified 3 years, 4 months ago by rami2227.
Viewing 1 replies (of 1 total)
  • The topic ‘カスタムフィールドのプレビューが表示されない’ is closed to new replies.