david_hartman 0 Report post Posted May 14, 2011 Hi, I would like to set the blog feed on our site so that the post title does not click through to full post page - and just keep the blog feed as it is on this page without clicking through.. http://wpdev.sontagfilm.org/category/news/ Is there a simple way to do this? Thank You, David Share this post Link to post Share on other sites
ricardo 0 Report post Posted May 14, 2011 Hi David! I think a filter might do the trick (search the forum for add_filter). You have to add a conditional statement to check if it's in the right category page? otherwise you'll loose links on titles all over the site. Ricardo Share this post Link to post Share on other sites
david_hartman 0 Report post Posted May 17, 2011 Thanks Ricardo, On another thread I picked up the following code and used it in the functions.php of the base theme.. but its not having any effect.. add_filter ('pagelines_post_title_output','no_link_title'); function no_link_title($title){ get_the_title(); return $title; } Suggestions? Thank You, David Share this post Link to post Share on other sites
Kate 3 Report post Posted May 17, 2011 Hi David, Is this referring to the same issue as this post: http://www.pagelines.com/forum/topic/9254 If so, could you please let us know which thread you wish to continue, so that we can simplify things. Thanks Share this post Link to post Share on other sites
cmunns 16 Report post Posted May 17, 2011 Use the other. Share this post Link to post Share on other sites