问题描述

我想使用我在回应客户端的形式的 select 元素中的标题。这样做最好的方法是什么?

最佳解决思路

查询特定帖子类型的所有帖子标题

// Function that returns post titles from specific post type as form select element
// returns null if found no results.

function output_projects_list() {
    global $wpdb;

    $custom_post_type = 'page'; // define your custom post type slug here

    // A sql query to return all post titles
    $results = $wpdb->get_results( $wpdb->prepare( "SELECT ID, post_title FROM {$wpdb->posts} WHERE post_type = %s and post_status = 'publish'", $custom_post_type ), ARRAY_A );

    // Return null if we found no results
    if ( ! $results )
        return;

    // HTML for our select printing post titles as loop
    $output = '<select name="project" id="project">';

    foreach( $results as $index => $post ) {
        $output .= '<option value="' . $post['ID'] . '">' . $post['post_title'] . '</option>';
    }

    $output .= '</select>'; // end of select element

    // get the html
    return $output;
}

// Then in your project just call the function
// Where you want the select form to appear
echo output_projects_list();

次佳解决思路

你可以 – 在我看来,应该 – 使用 API​​函数来获取数据。

// query for your post type
$post_type_query  = new WP_Query(
    array (
        'post_type'      => 'your-post-type',
        'posts_per_page' => -1
    )
);
// we need the array of posts
$posts_array      = $post_type_query->posts;
// create a list with needed information
// the key equals the ID, the value is the post_title
$post_title_array = wp_list_pluck( $posts_array, 'post_title', 'ID' );

第三种解决思路

对于分层后置类型,我们有内置:

wp_dropdown_pages(
    [
        'post_type' => 'page',
        'echo'      => 1,
        'name'      => 'wpse_titles',
        'id'        => 'wpse-titles'
    ]
);

这将生成具有帖子标题的选择元素,并将帖子 ID 作为选项值。

例:

<select name='wpse_titles' id='wpse-titles'>
    <option class="level-0" value="1">AAA</option>
    <option class="level-0" value="2">BBB</option>
    <option class="level-1" value="3">&nbsp;&nbsp;&nbsp;CCC</option>
</select>

wp_dropdown_pages()documentation 尚不清楚,但它是 get_pages()的封装,也支持其输入参数。

参考文献

注:本文内容整合自 Google/Baidu/Bing 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。