true, ); $args = wp_parse_args( $args, $defaults ); echo tptn_pop_posts( $args ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } /** * Function to show daily popular posts. * * @since 1.2 * * @param mixed $args Arguments list. */ function tptn_show_daily_pop_posts( $args = array() ) { $defaults = array( 'daily' => true, ); $args = wp_parse_args( $args, $defaults ); tptn_show_pop_posts( $args ); }