basically you need to change the default EXCERPT length of your posts.
there are a couple of ways to solve this issue:
- if you aren’t familiar with PHP
Install this plugin at : http://wordpress.org/plugins/advanced-excerpt/
This will allow you to change the the excerpt length from the admin panel.
- if you are familiar with basic PHP
Go to your functions.php in your theme at /wp-content/themes/YOUR_THEME_NAME/functions.php
Add the following code:
function different_excerpt_length($length) {
return 200;
}
add_filter('excerpt_length', 'different_excerpt_length');
You can change 200 to any number you want like 300.
As for showing your summary instead of the full post, you can follow the instructions from wordpress.com like so : http://en.support.wordpress.com/splitting-content/more-tag/
Hope it helps!
Related Posts:
- count number of posts (public , private , protected) by category name
- Querying post from a multisite network
- Remove image caption from post excerpt
- Invalid Post Type error when attempting to filter and Bulk Edit posts
- Change WordPress post-state in Admin Area
- Make “Post published. View post” Open in a New Tab
- Custom Post Type & Author not associating, user post count is 0, api doesn’t return author in post objects
- Guest Author – How to modify my custom function code if the guest author URL will follow a particular pattern/format?
- Only display posts with comments
- How to update all post at once?
- Working Bootstrap Carousel Conversion to WP – Technical Questions
- Force update all posts in custom post type, no content changes
- add image map script to post
- How to Customize number of blog posts on first page?
- How to create shortcode to show the 2 latest posts
- Multiple authors for single post without plugin
- Remove custom posts that match taxonomy value
- WordPress – Admin Manage Posts – Multiple Filters by Parent Category
- Author must complete profile info before they can publish a post?
- Advanced Custom Fields – Storing array value for further usage
- Sort posts by newest child while keeping hierarchy intact
- Custom Theme Want To Remove One Category From All Displays
- Instead of submiting an entire post, is there any way to submit a lite-post or a simple message?
- How do I use Ajax to show the new posts realtime, on the frontpage
- Allow anonymous users to post to my site for moderation
- Check if post exists
- How Can i Get 5 Recent Post Title With Corresponding Link?
- WP_Query posts_per_page ignored
- wp_query ‘s’ parameter does not work with custom post type
- WP Query – duplicated posts once including tags in search results
- View the number of entries recorded per day
- Define a wordpress constant through plugin functions?
- Show all posts in sidebar in single.php
- Receive each week the number of posts published
- Transfer WordPress post to RoR site: is the REST Api the only and/or best solution?
- Alternate row and columns every X posts
- Duplicate posts and change category
- recent posts for different categories
- import mailchimp newsletters into wordpress [closed]
- Removing noindex posts from wp_query
- Is there a PHP script to replace post date with updated modified date
- Post visibility based on user role
- Set static page/post from another blog on same network
- remove post and categories/tags count from right now dashboard widget
- How to allow visitors to filter posts by multiple taxonomies
- how to bulk add one line in the first paragraph of all posts
- Add title for previous and next posts to Yoko Theme
- Add $values to post_class()
- Limit the number of posts a category can have – newest post goes in, oldest one drops out, possible? plugin?
- Why are my paginated posts always returning the same results?
- a little direction on custom post type
- displaying flv-video attachment in post
- How to exclude posts that already appear in the main loop, from the category loop
- How come a YouTube link isn’t transformed into a shortcode inside the post content?
- Output Post with ACF Fields into other Post
- Custom Post Limit for homepage only without plugin?
- Add delay to publish post
- List all posts, pages and custom post types in admin
- How to share post?
- Problem with articles feed: XML Parsing Error: XML or text declaration not at start of entity
- Plotting posts on a graph
- Selecting related posts
- After 3.5.1. upgrade, posts appearing on Site yet *NOT* in WP admin!
- Want to change the post every three days with in specific category
- Displaying all posts from other sites on the network on one site
- Saving canvas generated image when saving post causes 404 error
- Some custom post types did not return an object
- Modified core/image rendering not showing in posts – only on pages
- Not display an image of category of custom post
- WordPress MySQL Search and replace with wildcard?
- Why do I have categories with duplicate slugs?
- How to display the pagination in my post list? [duplicate]
- WP Pages: Add checkbox, save and display
- display content in multiple columns
- Display WordPress Post By Date
- How to show content of specific item on the same page?
- Query post for today, if no post get the previous one
- How to get post_content while the post is being edited
- Call posts of particular category in a page
- Post of a specific category – not to be seen in paging previous/next post
- $post->ID not working
- How to show main category related to that post
- How to Add Wrapper to Infinite Scroll Javascript?
- Add wp-link-pages to post
- Retina for WordPress Posts
- Multiple loops on a Search result page?
- WP_Query: Fetch posts that are in (category1 and not in category2), OR posts that are not in cagegory1
- How do I display a full post, not just an excerpt?
- display only the title of the post into a certain category
- How to get override the WP Admin Syndication feed limit for a custom feed?
- Redirecting to a post based on a GET parameter and a custom field
- Stop Authors from submitting spam post
- Post only showing on homepage when Logged in – direct URL still working
- Adding Count Post in Page
- Custom post order returning posts from other categories
- How add class the_content();?
- Title displaying multiple times
- Published posts counter [closed]
- How to make the Post Author name fixed as “Editorial Staff” even if there are multiple authors?
- Trying to create parent for post. I need some help. Thanks