我有一个简单的函数,可以在提交表单(ID 18)时过滤页面内容。它只显示字段(ID 13)的条目。。。
add_action("gform_after_submission_18", "set_post_content", 10, 2);
function set_post_content($entry, $form){
//getting post
$post = get_post($entry["post_id"]);
//changing post content
$post->post_content = $entry[13];
}
我需要将其用作wp\\U查询循环中的变量,而不是简单地显示条目。。
我需要的结果是表单字段(ID 13)选择的帖子类型的所有帖子的标题循环。表单字段(ID 13)将是单选按钮,带有各种自定义帖子类型的选项。。
<?php $loop = new WP_Query( array(
\'post_type\' => \'$martinsposttype\',
\'orderby\' => \'title\',
\'posts_per_page\' => \'-1\',
\'order\' => \'ASC\'
) ); ?>
<ul>
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
<li><?php the_title(); ?></li>
<?php endwhile; ?>
</ul>
我究竟该如何将这一切绑定到我的函数中,以便在提交时执行wp\\u查询循环,并将$条目[13]用于该循环中的“post\\u type”?