About Sridhar Katakam
I am an independent WordPress web consultant with 10 years of experience in WordPress theme installation, customization, administration, maintenance, support, documentation, troubleshooting and PSD/design to WP.
Genesis and WordPress Tutorials
Session expired
Please log in again. The login page will open in a new tab. After logging in you can close it and return to this page.
Thank you for posting this solution. This works great and I appreciate you sharing.
Thanks for posting! I tweaked Rob’s code for a custom post type instead of a category for my purposes: https://gist.github.com/cdils/7748069
Hi
I am not a coder so maybe this is the stupid question.
How to display full content for more than one category
Maybe, it should be $full_categories = array( ‘your-category’, ‘your-category2’, ‘your-category3’ );
Thank you
The best way to find out is by trying.
To get Attempt 1 to work, I altered it this way:
function sk_do_post_content() {
global $more; // Declare global $more (before the loop).
$more = 1; // Set (inside the loop) to display all content, including text below more.
the_content();
}
Otherwise, i was still getting an exerpt and not a full post. Suggested from the the_content page in the codex.
Thanks for this. I had the same problem working off Outreach Pro.
Thanks for posting this worked flawlessly.
Worked perfectly, thanks so much!