ID ); ?> ID, $attributes ); ?>
%s', esc_url( $category_url ), esc_html( $category->name ) ); } echo '
'; echo ' '; echo '
' . implode( ',
', $meta ) . '
'; echo '
'; } ?> %s', esc_url( $tag_url ), esc_html( $tag->name ) ); } echo '
'; echo ' '; echo '
' . implode( ',
', $meta ) . '
'; echo '
'; } ?> '; $meta[] = sprintf( '
%s
', $icon, esc_html( aiovg_get_the_date() ) ); } // Author if ( $attributes['show_user'] ) { $icon = ' '; $author_url = aiovg_get_user_videos_page_url( $post->post_author ); $meta[] = sprintf( '
%s%s
', $icon, esc_url( $author_url ), esc_html( get_the_author() ) ); } // Views if ( $attributes['show_views'] ) { $icon = ' '; $views_count = get_post_meta( get_the_ID(), 'views', true ); $meta[] = sprintf( '
%s%s
', $icon, sprintf( esc_html__( '%s views', 'all-in-one-video-gallery' ), number_format_i18n( $views_count ) ) ); } // ... if ( count( $meta ) ) { echo '
'; echo implode( '/', $meta ); echo '
'; } ?>
'; echo $related_videos; } }