%2$s'; if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) { $time_string = ''; } $time_string = sprintf( $time_string, esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ), esc_attr( get_the_modified_date( 'c' ) ), esc_html( get_the_modified_date() ) ); $posted_on = '' . $time_string . ''; echo '' . corporacy_get_svg( array( 'icon' => 'calendar-new' ) ) . '' . esc_html__( ' Posted on ', 'corporacy' ) . '' . $posted_on . ''; } endif; if ( ! function_exists( 'corporacy_entry_footer' ) ) : /** * Prints HTML with meta information for the categories, tags and comments. */ function corporacy_entry_footer() { // Hide category and tag text for pages. if ( 'post' === get_post_type() ) { $categories_list = get_the_category_list( ' ' ); // Separate list by space. if ( $categories_list ) { echo '' . '' . esc_html__( 'Categories', 'corporacy' ) . '' . $categories_list . ''; } $tags_list = get_the_tag_list( '', ' ' ); // Separate list by space. if ( $tags_list ) { echo '' . '' . esc_html__( 'Tags', 'corporacy' ) . ',' . '' . $tags_list . ''; } } if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) { echo ''; comments_popup_link( sprintf( wp_kses( /* translators: %s: post title */ __( 'Leave a Comment on %s', 'corporacy' ), array( 'span' => array( 'class' => array(), ), ) ), get_the_title() ) ); echo ''; } edit_post_link( sprintf( wp_kses( /* translators: %s: Name of current post. Only visible to screen readers */ __( 'Edit %s', 'corporacy' ), array( 'span' => array( 'class' => array(), ), ) ), get_the_title() ), '', '' ); } endif; if ( ! function_exists( 'corporacy_author_bio' ) ) : /** * Prints HTML with meta information for the author bio. */ function corporacy_author_bio() { if ( '' !== get_the_author_meta( 'description' ) ) { get_template_part( 'template-parts/biography' ); } } endif; if ( ! function_exists( 'corporacy_by_line' ) ) : /** * Prints HTML with meta information for the author bio. */ function corporacy_by_line() { $post_id = get_queried_object_id(); $post_author_id = get_post_field( 'post_author', $post_id ); $byline = ''; $byline .= '' . esc_html( get_the_author_meta( 'nickname', $post_author_id ) ) . ''; echo '' . corporacy_get_svg( array( 'icon' => 'user' ) ) . '' . $byline . ''; } endif; if ( ! function_exists( 'corporacy_cat_list' ) ) : /** * Prints HTML with meta information for the categories */ function corporacy_cat_list() { // Hide category and tag text for pages. if ( 'post' === get_post_type() ) { /* translators: used between list items, there is a space after the / */ $categories_list = get_the_category_list( esc_html__( ', ', 'corporacy' ) ); if ( $categories_list ) { /* translators: 1: list of categories. */ printf( '' . corporacy_get_svg( array( 'icon' => 'folder-light' ) ) . '%1$s %2$s', esc_html__( 'Cat Links', 'corporacy' ), $categories_list ); // WPCS: XSS OK. } } elseif ( 'jetpack-portfolio' == get_post_type() ) { /* translators: used between list items, there is a space after the / */ $categories_list = get_the_term_list( get_the_ID(), 'jetpack-portfolio-type', '', esc_html__( ', ', 'corporacy' ) ); if ( ! is_wp_error( $categories_list ) ) { printf( '' . corporacy_get_svg( array( 'icon' => 'folder-light' ) ) . '%1$s %2$s', esc_html__( 'Cat Links', 'corporacy' ), $categories_list ); // WPCS: XSS OK. } } elseif ( 'featured-content' == get_post_type() ) { /* translators: used between list items, there is a space after the / */ $categories_list = get_the_term_list( get_the_ID(), 'featured-content-type', '', esc_html__( ', ', 'corporacy' ) ); if ( ! is_wp_error( $categories_list ) ) { printf( '' . corporacy_get_svg( array( 'icon' => 'folder-light' ) ) . '%1$s %2$s', esc_html__( 'Cat Links', 'corporacy' ), $categories_list ); // WPCS: XSS OK. } } } endif; if ( ! function_exists( 'corporacy_categorized_blog' ) ) : /** * Determines whether blog/site has more than one category. * * Create your own corporacy_categorized_blog() function to override in a child theme. * * @since 1.0.0 * * @return bool True if there is more than one category, false otherwise. */ function corporacy_categorized_blog() { if ( false === ( $all_the_cool_cats = get_transient( 'corporacy_categories' ) ) ) { // Create an array of all the categories that are attached to posts. $all_the_cool_cats = get_categories( array( 'fields' => 'ids', // We only need to know if there is more than one category. 'number' => 2, ) ); // Count the number of categories that are attached to the posts. $all_the_cool_cats = count( $all_the_cool_cats ); set_transient( 'corporacy_categories', $all_the_cool_cats ); } if ( $all_the_cool_cats > 1 ) { // This blog has more than 1 category so corporacy_categorized_blog should return true. return true; } else { // This blog has only 1 category so corporacy_categorized_blog should return false. return false; } } endif; /** * Footer Text * * @get footer text from theme options and display them accordingly * @display footer_text * @action corporacy_footer * * @since 1.0.0 */ function corporacy_footer_content() { $theme_data = wp_get_theme(); $footer_content = sprintf( _x( 'Copyright © %1$s %2$s %3$s', '1: Year, 2: Site Title with home URL, 3: Privacy Policy Link', 'corporacy' ), esc_attr( date_i18n( __( 'Y', 'corporacy' ) ) ), ''. esc_attr( get_bloginfo( 'name', 'display' ) ) . '', function_exists( 'get_the_privacy_policy_link' ) ? get_the_privacy_policy_link() : '' ) . ' | ' . esc_html( $theme_data->get( 'Name' ) ) . ' ' . esc_html__( 'by', 'corporacy' ) . ' ' . esc_html( $theme_data->get( 'Author' ) ) . ''; echo '
' . $footer_content . '
'; } add_action( 'corporacy_credits', 'corporacy_footer_content', 10 ); if ( ! function_exists( 'corporacy_archive_image' ) ) : /** * Display Post Archive Image */ function corporacy_archive_image() { if ( ! has_post_thumbnail() ) { // Bail if there is no featured image. return; }?>
'info' ) ); ?>
comment_type || 'trackback' == $comment->comment_type ) : ?>
  • >
    ', '' ); ?>
  • >
    says:', 'corporacy' ), sprintf( '%s', get_comment_author_link() ) ); ?> ', '' ); ?>
    comment_approved ) : ?>

    'div-comment', 'depth' => $depth, 'max_depth' => $args['max_depth'], 'before' => '', 'after' => '', ) ) ); ?>
    is needed. WordPress will know where to add it. */ ?> (', ' (', $links); $links = str_replace(')', ')', $links); return $links; } add_filter( 'wp_list_categories', 'corporacy_archives_cat_count_span' ); endif; if ( ! function_exists( 'corporacy_archives_count_span' ) ) : /** * Used to wrap post count in Archives widget with a span tag * * @since 1.0.0 */ function corporacy_archives_count_span($links) { $links = str_replace(' (', ' (', $links); $links = str_replace(')', ')', $links); return $links; } add_filter( 'get_archives_link', 'corporacy_archives_count_span' ); endif; if ( ! function_exists( 'corporacy_section_heading' ) ) : /** * Display/get tagline title and subtitle * * @since 1.0.0 */ function corporacy_section_heading( $tagline, $title, $description = '', $echo = true ) { $output = ''; if ( $title || $tagline || $description ) { $output .= '
    '; if ( $tagline ){ $output .= ''; } if ( $title ){ $output .= '

    ' . wp_kses_post( $title ) . '

    '; } if ( $description ){ $output .= '

    ' . wp_kses_post( $description ) . '

    '; } $output .= '
    '; } if ( ! $echo ) { return $output; } echo $output; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } endif;