Skip to content

Instantly share code, notes, and snippets.

@pradeepdotco
Created August 27, 2016 02:21
Show Gist options
  • Select an option

  • Save pradeepdotco/7e579f65aa45e3f0957d4086aba81dba to your computer and use it in GitHub Desktop.

Select an option

Save pradeepdotco/7e579f65aa45e3f0957d4086aba81dba to your computer and use it in GitHub Desktop.

Revisions

  1. pradeepdotco created this gist Aug 27, 2016.
    9 changes: 9 additions & 0 deletions output_category_info-genesis.php
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    // Add Title and Description for WordPress category page

    add_action( 'genesis_before_loop', 'wpism_output_category_info' );
    function wpism_output_category_info() {
    if ( is_category() || is_tag() || is_tax() ) {
    echo single_term_title();
    echo term_description();
    }
    }