Easy Custom Auto Excerpt
Easy Custom Auto Excerpt is a WordPress plugin to cut/excerpt your posts displayed in home, search or archive pages. This plugin also enables you to customize the read more button text and thumbnail image. Just activate the plugin, configure some options and you’re good to go 🙂 ECAE only works on themes that call the_content() or the_excerpt() on home, search & archive pages. ECAE does not support themes that use custom functions to display excerpt, like Total, OceanWP, Writee, and Customizr. The free version comes with everything you need to auto excerpt your content. Live Demo | Premium Version | Documentation | Support Forum Features: Excerpt your posts based on character length. Choose to excerpt your posts on home, search, archive, or custom archive pages. Align text (Justify, Right, Left, Center) your text based on your preference. Custom Read More text and Button. Preserve Image on Excerpt. Preserve real excerpt you wrote. Partial Indonesian and Spanish translation. Enable excerpt on RSS feed. Excerpt method by 1st paragraph, 2nd paragraph, and 3rd paragraph Premium Features: And if you like our plugin and want to do more customization we offer the premium version with some added features: Adjust Image Excerpt Position (left, right, center, float left and float right) Adjust Image width and margin Disable excerpt on specific post 10 Read More font type and custom font size 40+ Read More button themes. Customize button HTML Get the premium version: Easy Custom Auto Excerpt Premium Plugin Demo You can try the plugin on this URL: http://coba.tonjoostudio.com username: coba password: 123456 Information if you have any questions, comment, customization request or suggestion please contact us via our support forum Find more detail on our official site: Easy Custom Auto Excerpt Premium Or you can find our best plugins at Tonjoo Studio We can also modify your WordPress plugins according to your needs. Visit us : Tonjoo WordPress Developer Install Instruction Install the plugin. In the Admin Panel, Go to Excerpt -> Settings. Customize the settings according to your need. To remove read more link, fill read more text with “-” (without quote) Please have a time to understand how this plugin is generating excerpt : If the post has read more, then the read more will be used. If the post doesn’t have read more, then post excerpt will be used. If the post doesn’t have read more and excerpt, then it will automagically generate excerpt. Usage Instruction General Options Excerpt method Paragraph method will cut per paragraph Character method will cut per character based on characters count of Excerpt Size The left options is to only show one or more paragraph from beginning of the content Excerpt Size The number of characters to show based on Paragraph or Character Excerpt Method Strip shortcode If you select ‘yes’ any shortcode will be eliminated from the excerpt Strip empty HTML tags If you select ‘yes’ any empty HTML tags will be eliminated from the excerpt Disable on RSS Feed Disable this plugin on RSS feed page Special method This basically will fix some error on some themes Content Options Text align The plugin will try to align the excerpt Display Image Options Content image Option to select what image to show on the excerpt “Show all images” will show all the images on the visible content “Show only first image” will only show the first image on the content “Use Featured Image” will show the post’s featured image Image position, Image width, and Image margin [PREMIUM VERSION] This options is to configure how to show the image This options is work only on Content Image: Show Only First Image and Use Featured Image Below the screenshots of the some image options Image thumbnail size [PREMIUM VERSION] This is an option so select what image size to show This options is work only on Content Image: Use Featured Image Excerpt location Basic settings Option to determine the location to show the excerpt, i.e. blog page, front page, archive page, and search page User can also select which page to enable the excerpt Advanced settings This is an advanced settings of the location, which is users can select the post type or category to show on the each option, like blog page or front page Read more button Display option Normal : show readmore button, only if content length is bigger than excerpt size Always Show : always show the readmore button Always Hide : always hide the readmore button Read more text The text to show on read more link Text after content The text located right after the content, for example dots “[…]”. This element can be styled by css with selector “.ecae-dots” Inline Button The plugin will try to make the read more link inline with the paragraph Readmore align The plugin will try to align the read more link Button font [PREMIUM VERSION] The font of read more link and the text before link Button font size [PREMIUM VERSION] The font size of read more link and the text before link Text before button link Text before read more link Button link type [SEPARATED PREMIUM VERSION] The style of read more link > Notes: both Read more text and Text before link can be translated with WPML string translation. After you save the ECAE option, go to the WPML String Translation and then search for domain name “easy-custom-auto-excerpt”. The text is the one named “Readmore text” and “Before readmore text” (see the attached image below). Button Shortcode You can manually add the button by put this shortcode to your post: [ecae_button] Required “strip shortcode options” = No Read More Live Preview The preview of read more link and the text before link Custom CSS Allow user to add the custom css for the read more link and the text before link License Registering the license code is useful to get the regular updates of ECAE premium Registering the license code will also remove the tonjoostudio ads Translation : Bahasa Indonesia : Todi ~ @todiadiyatmo Serbian : Ogi Djuraskovic ~ firstsiteguide.com German French Spanish
Top keywords
- excerpt32×3.18%
- image24×2.39%
- read23×2.29%
- text21×2.09%
- link17×1.69%
- show17×1.69%
- button16×1.59%
- content12×1.19%
- premium12×1.19%
- options10×0.99%
- read more link10×0.99%
- custom9×0.89%
Stealth Publish
This plugin allows you to prevent specified posts from being featured on the front page or in feeds, and from notifying external services of publication. Beneficial in instances where you want to publish new content without any fanfare and just want the post added to archive and category pages and its own permalink page. A “Stealth publish?” checkbox is added to the “Write Post” admin page. Posts which are saved with that checkbox checked will no longer be featured on the front page of the blog, nor will the post be included in any feeds. A stealth published post will also not notify any external services about the publication. This includes not sending out pingbacks, trackbacks, and pings to update services such as pingomatic.com. This behavior can be overridden via the ‘c2c_stealth_publish_silent’ filter (see Filters section). NOTES: Use of other plugins making their own queries against the database to find posts will possibly allow a post to appear on the front page. But use of the standard WordPress functions for retrieving posts (as done for the main posts query and the recent posts widget) should not allow stealth published posts to appear on the home page. If you use this plugin, you do not need to use my Silent Publish plugin as that functionality is incorporated into this plugin. Alternatively, if you like the silent publishing feature but want your new posts to appear on your blog’s front page and in feeds, then just use the “Silent Publish” plugin. The plugin records when a post is stealth published, so subsequent edits of the post will have the “Stealth publish?” checkbox checked by default. Links: Plugin Homepage | Plugin Directory Page | Author Homepage Filters The plugin is further customizable via three filters. Typically, these customizations would be put into your active theme’s functions.php file, or used by another plugin. c2c_stealth_publish_meta_key (filter) The ‘c2c_stealth_publish_meta_key’ filter allows you to override the name of the custom field key used by the plugin to store a post’s stealth publish status. This isn’t a common need. Arguments: $custom_field_key (string): The custom field key to be used by the plugin. By default this is ‘_stealth-publish’. Example: /** * Defines a custom meta key to be used by Stealth Publish. * * @param string $custom_field_key The default custom field key name. * @return string */ function override_stealth_publish_key( $custom_field_key ) { return '_my_custom_stealth-publish'; } add_filter( 'c2c_stealth_publish_meta_key', 'override_stealth_publish_key' ); c2c_stealth_publish_silent (filter) The ‘c2c_stealth_publish_silent’ filter allows you to override whether the plugin also ensure the post gets published silently (i.e. without sending out pingbacks, tracbacks, and pings to update services). Arguments: $publish_silently (bool): Should stealth published posts also be published silently? By default this is ‘true’. $post_id (int): The ID of the post being published. Example: /** * Disable silent publishing for stealth published posts. * * @param bool $publish_silently True if the post is to be published silently. * @param int $post_id The post ID. * @return Always false. */ function override_stealth_publish_silent( $publish_silently, $post_id ) { return false; } add_filter( 'c2c_stealth_publish_silent', 'override_stealth_publish_silent' ); c2c_stealth_publish_default (filter) The ‘c2c_stealth_publish_default’ filter allows you to override the default state of the ‘Stealth Publish?’ checkbox. Arguments: $state (boolean): The default state of the checkbox. By default this is false. $post (WP_Post): The post currently being created/edited. Example: // Have the Stealth Publish? checkbox checked by default. add_filter( 'c2c_stealth_publish_default', '__return_true' );