View Single Post
Old 10-07-2010, 08:44 AM  
fris
Too lazy to set a custom title
 
fris's Avatar
 
Industry Role:
Join Date: Aug 2002
Posts: 55,591
you could to it via custom field and add this to your themes functions file

Code:
function custom_more($more) {
       global $post;
       $mymore = get_post_meta($post->ID, 'moreoff', true);
       if ($mymore == false) {
       		return '<a href="'. get_permalink($post->ID) . '">' . 'Read more...' . '</a>';
       }
}
add_filter('excerpt_more', 'custom_more');
just add a custom field to the posts moreoff and set it to true, those posts will have no more link.

might be a plugin to do this, but i would do it this way.

hope this helps.
__________________
Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.


My Cam Feeds Script / Gallery Scraper / WPXXX Theme / Free Templates
fris is online now   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote