我认为这很容易,但事实证明这很困难。我的最终目标是将jQuery同位素集成到我的wordpress组合中。我已经让同位素在wordpress之外工作了,但我很难将自定义分类法分配为类名。所以我不需要同位素的帮助,只需将分类法分配为类。
我有自定义职位类型的投资组合
该投资组合有2个自定义分类,我想用它来过滤我在存档页面上的结果。一种分类法是“媒体”,另一种是“运动”
因此,如果我将“打印”的媒体分类和“本地”的广告系列分配给投资组合中的帖子,我希望存档页面上的输出是这样的:
<div id="post-34" class="print local">...</div>
但是我目前有这个
<div id="post-34" class>...</div>
我按照get_the_terms上的codex说明。我将此代码添加到我的functions.php文件中:
<?php // get taxonomies terms links
function custom_taxonomies_terms_links() {
global $post, $post_id;
// get post by post id
$post = &get_post($post->ID);
// get post type by post
$post_type = $post->post_type;
// get post type taxonomies
$taxonomies = get_object_taxonomies($post_type);
foreach ($taxonomies as $taxonomy) {
// get the terms related to post
$terms = get_the_terms( $post->ID, $taxonomy );
if ( !empty( $terms ) ) {
$out = array();
foreach ( $terms as $term )
$out[] = '<a href="' .get_term_link($term->slug, $taxonomy) .'">'.$term->name.'</a>';
$return = join( ', ', $out );
}
}
return $return;
} ?>
然后我将echo调用放入archive-portfolio.php页面的循环中的类调用中,如下所示:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" class="<?php echo custom_taxonomies_terms_links(); ?>">
非常感谢任何帮助。这让我疯狂,我无法弄清楚这一点。
答案 0 :(得分:1)
wordpress有一种干净的方式输出帖子项目的类名 - 使用post_class
所以在你的情况下首先将div设置为
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>...</div>
并将分类法名称添加到您必须添加过滤器的类中。因此,在您的functions.php中将其删除(将YOUR_TAXO_NAME更改为自定义分类的名称): (取自here)
add_filter( 'post_class', 'custom_taxonomy_post_class', 10, 3 );
if( !function_exists( 'custom_taxonomy_post_class' ) ) {
function custom_taxonomy_post_class( $classes, $class, $ID ) {
$taxonomy = 'YOUR_TAXO_NAME';
$terms = get_the_terms( (int) $ID, $taxonomy );
if( !empty( $terms ) ) {
foreach( (array) $terms as $order => $term ) {
if( !in_array( $term->slug, $classes ) ) {
$classes[] = $term->slug;
}
}
}
return $classes;
}
}
(对于多个分类法添加数组)
$taxonomy = array('YOUR_TAXO_NAME_1', 'YOUR_TAXO_NAME_2');
并且应该将帖子类型名称及其标记的分类法添加到div类