Published on ' . get_the_date() . ''; } /** * Display the author name. */ function allurewp_posted_by() { echo 'By ' . get_the_author_posts_link() . ''; } /** * Display post categories. */ function allurewp_posted_in() { $categories = get_the_category(); if ( ! empty( $categories ) ) { echo 'Filed under: '; echo esc_html( $categories[0]->name ); echo ''; } } /** * Display the post's tags (if any). */ function allurewp_post_tags() { if ( has_tag() ) { echo ''; } } /** * Display pagination for posts. */ function allurewp_pagination() { the_posts_navigation( array( 'prev_text' => __( '« Previous', 'allurewp' ), 'next_text' => __( 'Next »', 'allurewp' ), ) ); } /** * Display the post's excerpt with a 'read more' link. */ function allurewp_the_excerpt() { if ( is_single() ) { the_content(); } else { the_excerpt(); } } /** * Display the "Read more" link for excerpts on archive pages. */ function allurewp_read_more_link() { echo '' . __( 'Read more', 'allurewp' ) . ''; } /** * Custom function for displaying social sharing buttons (example). */ function allurewp_social_sharing_buttons() { ?>

Share this post:

Twitter Facebook LinkedIn