Using custom post type is great... From an SEO point of view the only
thing you need to think of when talking about the URL is that it would
"Tell a story" and wont have any ->> & symbols in it...
您应该拥有的是主“自定义帖子类型页面”,然后是其中的分类单元,然后是帖子/单篇。。。
这意味着在主题结构中应该有三个额外的文件
自定义\\u POST\\u TYPE\\u NAME-page。php-single-CUSTOM\\u POST\\u TYPE\\u名称。php分类法。菲律宾语EXAMPLE:<我有一个珠宝网站,每个珠宝类型都有一个自定义的帖子类型。。。这个例子将使用订婚戒指。。。
这是我的自定义帖子类型页面Url:
http://www.example.com/?engagement_cat
这是我的分类Url:
http://www.example.com/?engagement_cat=prestige
这是我的产品Url:
http://www.example.com/?engagement_ring=18k-gold-ladies-engagement-ring
以我(拙见)的观点,这是gr8,因为它清晰、短小;向搜索引擎讲述一个故事,同时在URL中保留所需的关键字。。。
注册分类法时,只需使用“重写”=>true即可实现此目的。。。其余部分由wordpress自动完成。
<小时>As far as taxonomies "pages"...这都是一个尽可能多地显示相关信息的问题,对吗
那么,为什么不检查导致该分类的“帖子类型”,并设计页面以适应该信息呢。。。
Here is an example:
global $wp_query;
$term = $wp_query->get_queried_object();
$taxomonyTitle = $term->name;
$post_type = get_post_type( $post->ID );
if ($post_type == \'engagement_ring\') {
echo \'Engagement Rings Stuff here\'
} elseif ($post_type == \'wedding_ring\') {
echo \'Wedding Rings Stuff here\'
} elseif ($post_type == \'pendants\') {
echo \'Pendatns Stuff here\'
} elseif ($post_type == \'earrings\') {
echo \'Earrings Stuff here\'
} elseif ($post_type == \'bracelets\') {
echo \'Bracelets Stuff here\'
}
现在您获得了分类标题和帖子类型,并且可以分配变量
获取元框值等。。
希望这对Sagive SEO有所帮助