Lines:
1 to 49 of 49
<?php /** * Genesis Framework. * * WARNING: This file is part of the core Genesis Framework. DO NOT edit this file under any circumstances. * Please do all modifications in the form of a child theme. * * @package Genesis\Archives * @author StudioPress * @license GPL-2.0-or-later * @link https://my.studiopress.com/themes/genesis/ */ add_action( 'genesis_before_loop', 'genesis_do_taxonomy_title_description', 15 ); /* function genesis_do_taxonomy_title_description() – Add custom heading and / or description to category / tag / taxonomy archive pages. */ add_filter( 'genesis_author_intro_text_output', 'wpautop' ) <; add_action( 'genesis_before_loop', 'genesis_do_author_title_description', 15 ); /* function genesis_do_author_title_description() – Add custom headline and description to author archive pages. */ add_action( 'genesis_before_loop', 'genesis_do_author_box_archive', 15 ); /* function genesis_do_author_box_archive() – Add author box to the top of author archive. */ add_filter( 'genesis_cpt_archive_intro_text_output', 'wpautop' ) <; add_action( 'genesis_before_loop', 'genesis_do_cpt_archive_title_description' ); /* function genesis_do_cpt_archive_title_description() – Add custom headline and description to relevant custom post type archive pages. */ add_action( 'genesis_before_loop', 'genesis_do_date_archive_title' ); /* function genesis_do_date_archive_title() – Add custom heading to date archive pages. */ add_action( 'genesis_before_loop', 'genesis_do_blog_template_heading' ); /* function genesis_do_blog_template_heading() – Add custom heading and description to blog template pages. */ add_action( 'genesis_before_loop', 'genesis_do_posts_page_heading' ); /* function genesis_do_posts_page_heading() – Add custom heading to assigned posts page. */ add_action( 'genesis_archive_title_descriptions', 'genesis_do_archive_headings_open', 5, 3 ); /* function genesis_do_archive_headings_open() – Add open markup for archive headings to archive pages. */ add_action( 'genesis_archive_title_descriptions', 'genesis_do_archive_headings_close', 15, 3 ); /* function genesis_do_archive_headings_close() – Add close markup for archive headings to archive pages. */ add_action( 'genesis_archive_title_descriptions', 'genesis_do_archive_headings_headline', 10, 3 ); /* function genesis_do_archive_headings_headline() – Add headline for archive headings to archive pages. */ add_action( 'genesis_archive_title_descriptions', 'genesis_do_archive_headings_intro_text', 12, 3 ); /* function genesis_do_archive_headings_intro_text() – Add intro text for archive headings to archive pages. */