如何获取已创建表格的清单,请填写联系表格7,

时间:2017-08-02 12:10:24

标签: php wordpress

实际上,之前我问了一个不好的问题,那个问题已经存在Stackoverflow,所以我将其编辑成一个新问题,

我想要在另一个插件中使用的可用联系表单名称和ID列表, 如何获取联系表单名称到其他插件请给我解决方案,

我有一个获取cf7 form-id的解决方案,我想要名字以及表单id

  //code to fetch cf7 form-id

  $cf7_id_array = array();
    if (post_type_exists('wpcf7_contact_form')) {
        $args = array('post_type' => 'wpcf7_contact_form', 'post_per_page' => -1);
        $the_query = new WP_Query($args);
        if ($the_query->have_posts()) {
            while ($the_query->have_posts()) {
                $the_query->the_post();
                $cf7_id_array[] = get_the_ID();
            }
            wp_reset_postdata();
        }
    }
    return $cf7_id_array;

1 个答案:

答案 0 :(得分:0)

alert( SomethingWithFooAndIndex)