gpt4 book ai didi

shortcode - 如何获取联系表 7 的列表

转载 作者:行者123 更新时间:2023-12-01 12:26:50 25 4
gpt4 key购买 nike

我有 2 个由联系表 7 创建的联系表。
如何列出通过短代码创建的所有联系表格?
请检查图像,tks。

list

dropdown

更新:
这是我的代码,这工作!

$args = array('post_type' => 'wpcf7_contact_form', 'posts_per_page' => -1);
$rs = array();
if( $data = get_posts($args)){
foreach($data as $key){
$rs[$key->ID] = $key->post_title;
}
}else{
$rs['0'] = esc_html__('No Contact Form found', 'text-domanin');
}

最佳答案

下面是一个下拉列表:

<select name="field-name" id="field-id"> 
<option value="">--Select--</option><?php
$dbValue = get_option('field-name'); //example!
$posts = get_posts(array(
'post_type' => 'wpcf7_contact_form',
'numberposts' => -1
));
foreach ( $posts as $p ) {
echo '<option value="'.$p->ID.'"'.selected($p->ID,$dbValue,false).'>'.$p->post_title.' ('.$p->ID.')</option>';
} ?>
</select>

关于shortcode - 如何获取联系表 7 的列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38518093/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com