2015-09-14 05:10:24 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2015-09-22 16:01:25 +02:00
|
|
|
* Taxonomy API: Walker_Category class
|
2015-09-14 05:10:24 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Template
|
2015-09-22 16:01:25 +02:00
|
|
|
* @since 4.4.0
|
2015-09-14 05:10:24 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2015-09-22 16:01:25 +02:00
|
|
|
* Core class used to create an HTML list of categories.
|
2015-09-14 05:10:24 +02:00
|
|
|
*
|
|
|
|
* @since 2.1.0
|
2015-09-22 16:01:25 +02:00
|
|
|
*
|
|
|
|
* @see Walker
|
2015-09-14 05:10:24 +02:00
|
|
|
*/
|
|
|
|
class Walker_Category extends Walker {
|
2016-03-22 18:25:26 +01:00
|
|
|
|
2015-09-14 05:10:24 +02:00
|
|
|
/**
|
|
|
|
* What the class handles.
|
|
|
|
*
|
|
|
|
* @since 2.1.0
|
|
|
|
* @var string
|
2016-03-22 18:25:26 +01:00
|
|
|
*
|
|
|
|
* @see Walker::$tree_type
|
2015-09-14 05:10:24 +02:00
|
|
|
*/
|
|
|
|
public $tree_type = 'category';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Database fields to use.
|
|
|
|
*
|
|
|
|
* @since 2.1.0
|
|
|
|
* @var array
|
2016-03-22 18:25:26 +01:00
|
|
|
*
|
|
|
|
* @see Walker::$db_fields
|
2016-03-22 18:30:26 +01:00
|
|
|
* @todo Decouple this
|
2015-09-14 05:10:24 +02:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public $db_fields = array(
|
|
|
|
'parent' => 'parent',
|
|
|
|
'id' => 'term_id',
|
|
|
|
);
|
2015-09-14 05:10:24 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Starts the list before the elements are added.
|
|
|
|
*
|
|
|
|
* @since 2.1.0
|
2016-03-22 18:25:26 +01:00
|
|
|
*
|
|
|
|
* @see Walker::start_lvl()
|
2015-09-14 05:10:24 +02:00
|
|
|
*
|
2016-03-22 18:30:26 +01:00
|
|
|
* @param string $output Used to append additional content. Passed by reference.
|
|
|
|
* @param int $depth Optional. Depth of category. Used for tab indentation. Default 0.
|
|
|
|
* @param array $args Optional. An array of arguments. Will only append content if style argument
|
|
|
|
* value is 'list'. See wp_list_categories(). Default empty array.
|
2015-09-14 05:10:24 +02:00
|
|
|
*/
|
|
|
|
public function start_lvl( &$output, $depth = 0, $args = array() ) {
|
2020-05-16 20:42:12 +02:00
|
|
|
if ( 'list' !== $args['style'] ) {
|
2015-09-14 05:10:24 +02:00
|
|
|
return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2015-09-14 05:10:24 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$indent = str_repeat( "\t", $depth );
|
2015-09-14 05:10:24 +02:00
|
|
|
$output .= "$indent<ul class='children'>\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Ends the list of after the elements are added.
|
|
|
|
*
|
|
|
|
* @since 2.1.0
|
2016-03-22 18:25:26 +01:00
|
|
|
*
|
|
|
|
* @see Walker::end_lvl()
|
2015-09-14 05:10:24 +02:00
|
|
|
*
|
2016-03-22 18:30:26 +01:00
|
|
|
* @param string $output Used to append additional content. Passed by reference.
|
|
|
|
* @param int $depth Optional. Depth of category. Used for tab indentation. Default 0.
|
|
|
|
* @param array $args Optional. An array of arguments. Will only append content if style argument
|
|
|
|
* value is 'list'. See wp_list_categories(). Default empty array.
|
2015-09-14 05:10:24 +02:00
|
|
|
*/
|
|
|
|
public function end_lvl( &$output, $depth = 0, $args = array() ) {
|
2020-05-16 20:42:12 +02:00
|
|
|
if ( 'list' !== $args['style'] ) {
|
2015-09-14 05:10:24 +02:00
|
|
|
return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2015-09-14 05:10:24 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$indent = str_repeat( "\t", $depth );
|
2015-09-14 05:10:24 +02:00
|
|
|
$output .= "$indent</ul>\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-03-22 18:25:26 +01:00
|
|
|
* Starts the element output.
|
2015-09-14 05:10:24 +02:00
|
|
|
*
|
|
|
|
* @since 2.1.0
|
2016-03-22 18:25:26 +01:00
|
|
|
*
|
|
|
|
* @see Walker::start_el()
|
2015-09-14 05:10:24 +02:00
|
|
|
*
|
2020-10-17 18:05:09 +02:00
|
|
|
* @param string $output Used to append additional content (passed by reference).
|
|
|
|
* @param WP_Term $category Category data object.
|
|
|
|
* @param int $depth Optional. Depth of category in reference to parents. Default 0.
|
|
|
|
* @param array $args Optional. An array of arguments. See wp_list_categories(). Default empty array.
|
|
|
|
* @param int $id Optional. ID of the current category. Default 0.
|
2015-09-14 05:10:24 +02:00
|
|
|
*/
|
|
|
|
public function start_el( &$output, $category, $depth = 0, $args = array(), $id = 0 ) {
|
|
|
|
/** This filter is documented in wp-includes/category-template.php */
|
2019-09-10 21:23:55 +02:00
|
|
|
$cat_name = apply_filters( 'list_cats', esc_attr( $category->name ), $category );
|
2015-09-14 05:10:24 +02:00
|
|
|
|
|
|
|
// Don't generate an element if the category name is empty.
|
2018-09-03 00:09:24 +02:00
|
|
|
if ( '' === $cat_name ) {
|
2015-09-14 05:10:24 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-03-21 11:37:57 +01:00
|
|
|
$atts = array();
|
|
|
|
$atts['href'] = get_term_link( $category );
|
|
|
|
|
2015-09-14 05:10:24 +02:00
|
|
|
if ( $args['use_desc_for_title'] && ! empty( $category->description ) ) {
|
|
|
|
/**
|
2016-05-22 20:50:28 +02:00
|
|
|
* Filters the category description for display.
|
2015-09-14 05:10:24 +02:00
|
|
|
*
|
|
|
|
* @since 1.2.0
|
|
|
|
*
|
2020-10-17 18:05:09 +02:00
|
|
|
* @param string $description Category description.
|
|
|
|
* @param WP_Term $category Category object.
|
2015-09-14 05:10:24 +02:00
|
|
|
*/
|
2019-03-21 11:37:57 +01:00
|
|
|
$atts['title'] = strip_tags( apply_filters( 'category_description', $category->description, $category ) );
|
2015-09-14 05:10:24 +02:00
|
|
|
}
|
|
|
|
|
2019-03-21 11:37:57 +01:00
|
|
|
/**
|
|
|
|
* Filters the HTML attributes applied to a category list item's anchor element.
|
|
|
|
*
|
|
|
|
* @since 5.2.0
|
|
|
|
*
|
|
|
|
* @param array $atts {
|
|
|
|
* The HTML attributes applied to the list item's `<a>` element, empty strings are ignored.
|
|
|
|
*
|
|
|
|
* @type string $href The href attribute.
|
|
|
|
* @type string $title The title attribute.
|
|
|
|
* }
|
|
|
|
* @param WP_Term $category Term data object.
|
|
|
|
* @param int $depth Depth of category, used for padding.
|
|
|
|
* @param array $args An array of arguments.
|
|
|
|
* @param int $id ID of the current category.
|
|
|
|
*/
|
|
|
|
$atts = apply_filters( 'category_list_link_attributes', $atts, $category, $depth, $args, $id );
|
|
|
|
|
|
|
|
$attributes = '';
|
|
|
|
foreach ( $atts as $attr => $value ) {
|
2019-10-06 17:06:03 +02:00
|
|
|
if ( is_scalar( $value ) && '' !== $value && false !== $value ) {
|
2019-03-21 11:37:57 +01:00
|
|
|
$value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );
|
|
|
|
$attributes .= ' ' . $attr . '="' . $value . '"';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$link = sprintf(
|
|
|
|
'<a%s>%s</a>',
|
|
|
|
$attributes,
|
|
|
|
$cat_name
|
|
|
|
);
|
2015-09-14 05:10:24 +02:00
|
|
|
|
|
|
|
if ( ! empty( $args['feed_image'] ) || ! empty( $args['feed'] ) ) {
|
|
|
|
$link .= ' ';
|
|
|
|
|
|
|
|
if ( empty( $args['feed_image'] ) ) {
|
|
|
|
$link .= '(';
|
|
|
|
}
|
|
|
|
|
|
|
|
$link .= '<a href="' . esc_url( get_term_feed_link( $category->term_id, $category->taxonomy, $args['feed_type'] ) ) . '"';
|
|
|
|
|
|
|
|
if ( empty( $args['feed'] ) ) {
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Category name. */
|
2017-12-01 00:11:00 +01:00
|
|
|
$alt = ' alt="' . sprintf( __( 'Feed for all posts filed under %s' ), $cat_name ) . '"';
|
2015-09-14 05:10:24 +02:00
|
|
|
} else {
|
2017-12-01 00:11:00 +01:00
|
|
|
$alt = ' alt="' . $args['feed'] . '"';
|
|
|
|
$name = $args['feed'];
|
2015-09-14 05:10:24 +02:00
|
|
|
$link .= empty( $args['title'] ) ? '' : $args['title'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$link .= '>';
|
|
|
|
|
|
|
|
if ( empty( $args['feed_image'] ) ) {
|
|
|
|
$link .= $name;
|
|
|
|
} else {
|
2019-01-07 13:48:51 +01:00
|
|
|
$link .= "<img src='" . esc_url( $args['feed_image'] ) . "'$alt" . ' />';
|
2015-09-14 05:10:24 +02:00
|
|
|
}
|
|
|
|
$link .= '</a>';
|
|
|
|
|
|
|
|
if ( empty( $args['feed_image'] ) ) {
|
|
|
|
$link .= ')';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! empty( $args['show_count'] ) ) {
|
|
|
|
$link .= ' (' . number_format_i18n( $category->count ) . ')';
|
|
|
|
}
|
2020-05-16 20:42:12 +02:00
|
|
|
if ( 'list' === $args['style'] ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$output .= "\t<li";
|
2015-09-14 05:10:24 +02:00
|
|
|
$css_classes = array(
|
|
|
|
'cat-item',
|
|
|
|
'cat-item-' . $category->term_id,
|
|
|
|
);
|
|
|
|
|
|
|
|
if ( ! empty( $args['current_category'] ) ) {
|
|
|
|
// 'current_category' can be an array, so we use `get_terms()`.
|
2017-12-01 00:11:00 +01:00
|
|
|
$_current_terms = get_terms(
|
2018-08-17 03:51:36 +02:00
|
|
|
array(
|
2019-08-03 05:35:56 +02:00
|
|
|
'taxonomy' => $category->taxonomy,
|
2017-12-01 00:11:00 +01:00
|
|
|
'include' => $args['current_category'],
|
|
|
|
'hide_empty' => false,
|
|
|
|
)
|
|
|
|
);
|
2015-09-14 05:10:24 +02:00
|
|
|
|
|
|
|
foreach ( $_current_terms as $_current_term ) {
|
|
|
|
if ( $category->term_id == $_current_term->term_id ) {
|
|
|
|
$css_classes[] = 'current-cat';
|
2019-09-18 14:25:56 +02:00
|
|
|
$link = str_replace( '<a', '<a aria-current="page"', $link );
|
2015-09-14 05:10:24 +02:00
|
|
|
} elseif ( $category->term_id == $_current_term->parent ) {
|
|
|
|
$css_classes[] = 'current-cat-parent';
|
|
|
|
}
|
2015-12-18 19:38:25 +01:00
|
|
|
while ( $_current_term->parent ) {
|
|
|
|
if ( $category->term_id == $_current_term->parent ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$css_classes[] = 'current-cat-ancestor';
|
2015-12-18 19:38:25 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
$_current_term = get_term( $_current_term->parent, $category->taxonomy );
|
|
|
|
}
|
2015-09-14 05:10:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-05-22 20:50:28 +02:00
|
|
|
* Filters the list of CSS classes to include with each category in the list.
|
2015-09-14 05:10:24 +02:00
|
|
|
*
|
|
|
|
* @since 4.2.0
|
|
|
|
*
|
|
|
|
* @see wp_list_categories()
|
|
|
|
*
|
2020-10-17 18:05:09 +02:00
|
|
|
* @param string[] $css_classes An array of CSS classes to be applied to each list item.
|
|
|
|
* @param WP_Term $category Category data object.
|
|
|
|
* @param int $depth Depth of page, used for padding.
|
|
|
|
* @param array $args An array of wp_list_categories() arguments.
|
2015-09-14 05:10:24 +02:00
|
|
|
*/
|
|
|
|
$css_classes = implode( ' ', apply_filters( 'category_css_class', $css_classes, $category, $depth, $args ) );
|
2019-01-07 13:54:48 +01:00
|
|
|
$css_classes = $css_classes ? ' class="' . esc_attr( $css_classes ) . '"' : '';
|
2015-09-14 05:10:24 +02:00
|
|
|
|
2019-01-07 13:54:48 +01:00
|
|
|
$output .= $css_classes;
|
2015-09-14 05:10:24 +02:00
|
|
|
$output .= ">$link\n";
|
2015-10-13 19:02:25 +02:00
|
|
|
} elseif ( isset( $args['separator'] ) ) {
|
|
|
|
$output .= "\t$link" . $args['separator'] . "\n";
|
2015-09-14 05:10:24 +02:00
|
|
|
} else {
|
|
|
|
$output .= "\t$link<br />\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Ends the element output, if needed.
|
|
|
|
*
|
|
|
|
* @since 2.1.0
|
2016-03-22 18:25:26 +01:00
|
|
|
*
|
|
|
|
* @see Walker::end_el()
|
2015-09-14 05:10:24 +02:00
|
|
|
*
|
2017-10-03 00:14:46 +02:00
|
|
|
* @param string $output Used to append additional content (passed by reference).
|
2015-09-14 05:10:24 +02:00
|
|
|
* @param object $page Not used.
|
2016-03-22 18:30:26 +01:00
|
|
|
* @param int $depth Optional. Depth of category. Not used.
|
|
|
|
* @param array $args Optional. An array of arguments. Only uses 'list' for whether should append
|
|
|
|
* to output. See wp_list_categories(). Default empty array.
|
2015-09-14 05:10:24 +02:00
|
|
|
*/
|
|
|
|
public function end_el( &$output, $page, $depth = 0, $args = array() ) {
|
2020-05-16 20:42:12 +02:00
|
|
|
if ( 'list' !== $args['style'] ) {
|
2015-09-14 05:10:24 +02:00
|
|
|
return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2015-09-14 05:10:24 +02:00
|
|
|
|
|
|
|
$output .= "</li>\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|