• Resolved pikaya

    (@pikaya)


    Hi
    Need to display the description I’ve filled in the category page…(back office)
    before the posts grid display -any help how?
    thanks:)

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author oceanwp

    (@oceanwp)

    Hello, when you add a description on your category it is displayed as subheading but try this code in the functions.php file of your child theme:

    function prefix_category_desc() {
    
        if ( is_category() || is_tax() ) {
    		echo term_description();
    	}
    
    }
    add_action( 'ocean_before_content_inner', 'prefix_category_desc' );
    Thread Starter pikaya

    (@pikaya)

    Great – works perfect

    Theme Author oceanwp

    (@oceanwp)

    You’re welcome ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘category description’ is closed to new replies.