MW WP Formのセレクトボックスの内容を投稿一覧にする
functions.phpに以下を追記。
function add_post_list($children, $atts) { if ('●●' == $atts['name']) { $talents = get_posts( array( 'post_type' => 'post', 'posts_per_page' => -1, ) ); $children = array('選択してください'); foreach ($talents as $talent) { $children[$talent->post_title] = $talent->post_title; } } return $children; } add_filter('mwform_choices_mw-wp-form-〇〇', 'add_post_list', 10, 2);
●●はセレクトボックスにあてたnameを、〇〇にフォームのidを入れる。