0

我正在使用自定义帖子类型“列表”,在这些帖子类型中我有自定义字段值 geocraft_state 和 geocraft_city。

目前链接如下

site.com/listing/Title-of-listing

但我希望他们像这样

http://site.com/geocraft_state/geocraft_city/Title-of-Listing

因此,如果来自 NA State 的人发布列表,则链接应如下所示

site.com/NA/Greensboro/Title-of-Listing

他们无论如何我们可以使用动态自定义字段值来生成链接吗?

任何帮助将不胜感激。

谢谢

4

2 回答 2

1

几乎 0 编码的最快和最简单的方法是停止使用自定义字段,并将所有这些字段设置为分类\类别,其中 geocraft_state 将 geocraft_city 作为子级的分层类别,并使用永久链接结构作为/%category%/%postname%/

更多关于分类法的信息:http: //codex.wordpress.org/Taxonomies

于 2013-06-28T09:22:45.667 回答
0

我没有使用自定义字段,而是通过在 functions.php 中添加这些代码来添加自定义分类法。现在我必须弄清楚如何在前端表单中显示它。

function add_custom_taxonomies() {
    // Add new "Locations" taxonomy to Posts
    register_taxonomy('location', 'post', array(
        // Hierarchical taxonomy (like categories)
        'hierarchical' => true,
        // This array of options controls the labels displayed in the WordPress Admin UI
        'labels' => array(
            'name' => _x( 'Locations', 'taxonomy general name' ),
            'singular_name' => _x( 'Location', 'taxonomy singular name' ),
            'search_items' =>  __( 'Search Locations' ),
            'all_items' => __( 'All Locations' ),
            'parent_item' => __( 'Parent Location' ),
            'parent_item_colon' => __( 'Parent Location:' ),
            'edit_item' => __( 'Edit Location' ),
            'update_item' => __( 'Update Location' ),
            'add_new_item' => __( 'Add New Location' ),
            'new_item_name' => __( 'New Location Name' ),
            'menu_name' => __( 'Locations' ),
        ),
        // Control the slugs used for this taxonomy
        'rewrite' => array(
            'slug' => 'locations', // This controls the base slug that will display before each term
            'with_front' => false, // Don't display the category base before "/locations/"
            'hierarchical' => true // This will allow URL's like "/locations/boston/cambridge/"
        ),
    ));
}
add_action( 'init', 'add_custom_taxonomies', 0 );
于 2013-06-29T07:31:16.907 回答