テーマはオリジナルです。
search.phpには以下のようなシンプルなコードだけ記述しています。
/* Start the Loop */
while ( have_posts() ) :
the_post();
get_template_part( ‘template-parts/content’, ‘search’ );
endwhile;
the_posts_navigation();
the_post() -> loop_startアクション -> VK_Filter_Search::display_search_result_form_content() -> VK_Filter_Search ::search_result_form_content()
と呼ばれていることはデバッグしながら確認できたのですが、option値が空なのでform_contentが出力されないようでした。
何かヒントになりますでしょうか?