You know when your theme uses excerpts and each post have a "Read more" link to the full post at the bottom.. do you know how to remove that link in specific posts but not all?
Wordpress them question?
Collapse
X
-
-
-
you could to it via custom field and add this to your themes functions file
just add a custom field to the posts moreoff and set it to true, those posts will have no more link.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');
might be a plugin to do this, but i would do it this way.
hope this helps.Comment
-
-





Comment