diff --git a/-/php/tags.php b/-/php/tags.php index 6dc3619..e18a11a 100644 --- a/-/php/tags.php +++ b/-/php/tags.php @@ -6556,7 +6556,7 @@ public function start_el( &$output, $term, $depth, $args ) { apply_filters( 'the_permalink', get_permalink() ), $selected === get_the_ID() ? ' selected' : '', $term_pad, - apply_filters( 'term_dropdown_webcomic_title', the_title( '', '', false ), $args, $i ) + apply_filters( 'term_dropdown_webcomic_title', the_title( '', '', false ), get_post(), $i ) ); } @@ -6687,7 +6687,7 @@ public function start_el( &$output, $term, $depth, $args ) { $output .= sprintf( '%s', $selected === get_the_ID() ? ' class="current"' : '', apply_filters( 'the_permalink', get_permalink() ), - $webcomic_image ? WebcomicTag::the_webcomic( $webcomic_image, 'self' ) : apply_filters( 'term_list_webcomic_title', the_title( '', '', false ), $args, $i ) + $webcomic_image ? WebcomicTag::the_webcomic( $webcomic_image, 'self' ) : apply_filters( 'term_list_webcomic_title', the_title( '', '', false ), get_post(), $i ) ); }