[Resolved] Add Category Description

Home Forums Support [Resolved] Add Category Description

Home Forums Support Add Category Description

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1534397
    Alessandro

    Hi, i want to insert the category description in the category page.

    I have insert this shortcode in functions.php (child):

    add_shortcode( 'term_description', 'tu_term_description' );
    function tu_term_description() {
        ob_start();
        echo term_description( get_queried_object()->term_id, 'category' );
        return ob_get_clean();
    }

    https://generatepress.com/forums/topic/blog-category-description-not-showing/#post-1313027

    Why don’t work?

    #1534497
    David
    Staff
    Customer Support

    Hi there,

    did you add the Shortcode: [term_description] to the Header Element content ?

    #1534591
    Alessandro

    No I did not. How should it be created?

    #1534808
    David
    Staff
    Customer Support

    Go to Appearance > Elements and edit the Header Element you have assigned to your archives.
    Below the Title HTML insert: [term_description]

    #1535813
    Alessandro

    Thank you David, now Work! 🙂

    #1535959
    David
    Staff
    Customer Support

    Glad to hear that!

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.