【发布时间】:2016-12-12 23:52:42
【问题描述】:
我似乎无法正确调整以下代码以将类别链接指向“#”而不是指向类别页面。任何建议将不胜感激!
if ( ! function_exists( 'theme_framework_post_cat' ) ) :
function theme_framework_post_cat() {
if ( 'post' == get_post_type() ) {
$categories_list = get_the_category_list( esc_html__( ', ', 'theme' ) );
if ( $categories_list && theme_framework_categorized_blog() ) {
printf( '<span class="cat-links">' . esc_html__( '%1$s', 'theme' ) . '</span>', $categories_list );
}
}
}
endif;
【问题讨论】:
标签: php html wordpress tags meta-tags