As a SEO purpose it is a good idea. I am making the category archive page with Elementor theme builder. I shall display the category description below the category title. Here I am sharing my procedure. Adding The Short Description We shall add the short description to every category from Dashboard. Login to Dashboard Navigate… Continue Reading
archive page
Showing full content on category page
Drop the following code in your functions.php file add_action( ‘genesis_entry_content’, ‘show_full_content’, 1 ); function show_full_content() { if( ! is_category() ) //* returning early if it is not a category page return; add_filter( ‘genesis_pre_get_option_content_archive’, ‘__return_false’ ); //* disabling the excerpt add_filter( ‘genesis_pre_get_option_content_archive_limit’, ‘__return_false’ ); //* disabling the content limit option } if you are targeting the… Continue Reading