1

在条目标题中使用 Genesis 短代码 [post_categories] 时,我正在拼命寻找一种解决方案,将条件 div 类添加到各个类别。

我想为主页上的文章和单个帖子的条目标题中的类别标题应用独特的颜色。www.mic.com 有这种影响。您会注意到“世界”类别下的文章具有一种颜色的类别文本,而“新闻”类别下的文章具有以不同颜色显示的类别文本。

例如,如果类别是“基础设施”,我希望有一个围绕现有入口类别类的类。

我希望它看起来像这样:

<div class="infrastructure section"><span class="entry-categories"></span></div>

如果类别是“选举”,我希望它显示:

<div class="elections section"><span class="entry-categories"></span></div>

下面列出了我需要编辑以获得此效果的代码。

add_shortcode( 'post_categories', 'genesis_post_categories_shortcode' );
/**
 * Produces the category links list.
 *
 * Supported shortcode attributes are:
 *   after (output after link, default is empty string),
 *   before (output before link, default is 'Tagged With: '),
 *   sep (separator string between tags, default is ', ').
 *
 * Output passes through 'genesis_post_categories_shortcode' filter before returning.
 *
 * @since 1.1.0
 *
 * @param array|string $atts Shortcode attributes. Empty string if no attributes.
 * @return string Shortcode output
 */
function genesis_post_categories_shortcode( $atts ) {

$defaults = array(
    'sep'    => ', ',
    'before' => __( 'Filed Under: ', 'genesis' ),
    'after'  => '',
);

$atts = shortcode_atts( $defaults, $atts, 'post_categories' );

$cats = get_the_category_list( trim( $atts['sep'] ) . ' ' );

if ( genesis_html5() )
    $output = sprintf( '<span %s>', genesis_attr( 'entry-categories' ) ) . $atts['before'] . $cats . $atts['after'] . '</span>';
else
    $output = '<span class="categories">' . $atts['before'] . $cats . $atts['after'] . '</span>';

return apply_filters( 'genesis_post_categories_shortcode', $output, $atts );

}

我尝试使用 get_the_category_list 函数有条件地创建类名,但该命令未完成操作。通过 firebug 查看我的网站时,新类将命令显示为文本。

$cats = get_the_category_list( trim( $atts['sep'] ) . ' ' );

if ( genesis_html5() )
    $output = sprintf( '<div class="<?php echo $cats[0]->cat_name; ?> section"><span %s>', genesis_attr( 'entry-categories' ) ) . $atts['before'] . $cats . $atts['after'] . '</span></div>';

关于如何实现这种影响的任何想法?

非常感谢!

4

1 回答 1

0

像这样的东西应该有效(但仅适用于 html5 ):

function custom_terms_shortcode( $atts ) {

    $defaults = array(
                    'after'    => '',
                    'before'   => __( 'Filed Under: ', 'genesis' ),
                    'sep'      => ', ',
                    'taxonomy' => 'category',
    );

    $atts = shortcode_atts( $defaults, $atts, 'custom_terms' );

    $terms = get_the_terms( get_the_ID(), $atts['taxonomy'] );

    if ( is_wp_error( $terms ) )
                    return;

    if ( empty( $terms ) )
                    return;

    if ( genesis_html5() ){


            $output .= '<span class="entry-terms">';
            $output .= $atts['before'];
            foreach ($terms as $term) {
            $output = '<div class="'. $term->name .'">';
            $output .= '<a href="'.esc_attr(add_query_arg( $atts['taxonomy'], $term->slug ),'').'">'.$term->name.'</a>'.$atts['sep'];
            $output .= '</div>';
            }
            $output = substr($output, 0, -2);
            $output .= $atts['after'];
            $output .= '</span>';
    }

    return apply_filters( 'genesis_post_terms_shortcode', $output, $terms, $atts );

}
于 2014-08-21T18:15:27.370 回答