Ich habe “widget_comments_args” verwendet, um die Kommentarabfrage für Letzte Kommentare zu ändern, aber es wird nicht funktionieren.
add_filter( 'widget_comments_args', 'my_function_name' ); function my_function_name( $comment_args ) { $comment_args['post_type'] = 'post'; $comment_args['type'] = 'comment'; return $comment_args; }