-
Notifications
You must be signed in to change notification settings - Fork 7
/
readme.txt
152 lines (107 loc) · 8.47 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
=== Advanced Excerpt ===
Contributors: bradt, aprea
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5VPMGLLK94XJC
Tags: excerpt, post, content, formatting
Requires at least: 3.2
Tested up to: 3.9
Stable tag: 4.2.3
License: GPLv3
Control the appearance of WordPress post excerpts
== Description ==
This plugin adds several improvements to WordPress' default way of creating excerpts.
1. Keeps HTML markup in the excerpt (and you get to choose which tags are included)
2. Trims the excerpt to a given length using either character count or word count
3. Only the 'real' text is counted (HTML is ignored but kept)
4. Customizes the excerpt length and the ellipsis character that are used
5. Completes the last word or sentence in an excerpt (no weird cuts)
6. Adds a *read-more* link to the text
7. Ignores custom excerpts and use the generated one instead
8. Theme developers can use `the_advanced_excerpt()` for even more control (see the FAQ)
Most of the above features are optional and/or can be customized by the user or theme developer.
Interested in contributing to Advanced Excerpt? Please visit https://github.com/deliciousbrains/wp-advanced-excerpt
See [our wiki](https://github.com/deliciousbrains/wp-advanced-excerpt/wiki) for additional documentation.
Banner image credit - [chillihead](https://www.flickr.com/photos/chillihead/)
Original plugin author - [basvd](http://profiles.wordpress.org/basvd)
== Installation ==
1. Use WordPress' built-in installer
2. Access the "Excerpt" menu option under Settings
== Frequently Asked Questions ==
= What's an excerpt? =
A short version of a post that is usually displayed wherever the whole post would be too much (eg. search results, news feeds, archives). You can write them yourself, but if you don't, WordPress will make a very basic one instead.
= Why do I need this plugin? =
The default excerpt created by WordPress removes all HTML. If your theme uses `the_excerpt()` or `the_content()` to view excerpts, they might look weird because of this (smilies are removed, lists are flattened, etc.) This plugin fixes that and also gives you more control over excerpts.
= Does it work for WordPress version x.x.x? =
During development, the plugin is tested with the most recent version(s) of WordPress. It might work on older versions, but it's better to just keep your installation up-to-date.
= Is this plugin available in my language? / How do I translate this plugin? =
Advanced Excerpt is internationalization (i18n) friendly. If you'd like to contribute a translation for your language please do so by opening a [pull request](https://github.com/deliciousbrains/wp-advanced-excerpt).
= Does this plugin support multibyte characters, such as Chinese? =
Before 4.1, multibyte characters were supported directly by this plugin. This feature has been removed because it added irrelevant code for a 'problem' that isn't actually specific to the plugin.
If you require multibyte character support on your website, you can [override the default text operations](http://www.php.net/manual/en/mbstring.overload.php) in PHP.
= Can I manually call the filter in my WP theme or plugin? =
The plugin automatically hooks on `the_excerpt()` and `the_content()` functions and uses the parameters specified in the options panel.
If you want to call the filter with different options, you can use `the_advanced_excerpt()` template tag provided by this plugin. This tag accepts [query-string-style parameters](http://codex.wordpress.org/Template_Tags/How_to_Pass_Tag_Parameters#Tags_with_query-string-style_parameters) (theme developers will be familiar with this notation).
The following parameters can be set:
* `length`, an integer that determines the length of the excerpt
* `length_type`, enumeration, if set to `words` the excerpt length will be in words; if set to `characters` the excerpt length will be in characters
* `no_custom`, if set to `1`, an excerpt will be generated even if the post has a custom excerpt; if set to `0`, the custom excerpt will be used
* `no_shortcode`, if set to `1`, shortcodes are removed from the excerpt; if set to `0`, shortcodes will be parsed
* `finish`, enumeration, if set to `exact` the excerpt will be the exact lenth as defined by the "Excerpt Length" option. If set to `word` the last word in the excerpt will be completed. If set to `sentence` the last sentence in the excerpt will be completed.
* `ellipsis`, the string that will substitute the omitted part of the post; if you want to use HTML entities in the string, use `%26` instead of the `&` prefix to avoid breaking the query
* `read_more`, the text used in the read-more link
* `add_link`, if set to `1`, the read-more link will be appended; if `0`, no link will be added
* `allowed_tags`, a comma-separated list of HTML tags that are allowed in the excerpt. Entering `_all` will preserve all tags.
* `exclude_tags`, a comma-separated list of HTML tags that must be removed from the excerpt. Using this setting in combination with `allowed_tags` makes no sense
A custom advanced excerpt call could look like this:
`the_advanced_excerpt('length=320&length_type=words&no_custom=1&ellipsis=%26hellip;&exclude_tags=img,p,strong');`
= Does this plugin work outside the Loop? =
No, this plugin fetches the post from The Loop and there is currently no way to pass a post ID or any custom input to it.
However, you can [start The Loop manually](http://codex.wordpress.org/The_Loop#Multiple_Loops) and apply the plugin as usual.
== Screenshots ==
1. The options page
2. An example of an excerpt generated by the plugin
== Changelog ==
= 4.2.3 =
* Fix: The "Remove all tags except the following" wasn't excluding tags as expected
* Fix: Call `remove_all_filter()` on the `the_excerpt` hook to improve excerpt rendering
* Fix: Only honor the "Only filter `the_content()` when there's no break (<!--more-->) tag in the post content" setting when hooking into `the_content` filter
* Improvement: Improve backwards compatibility by reverting back to using `get_the_content()` for the base excerpt text
* Improvement: Added the `advanced_excerpt_skip_excerpt_filtering` filter allowing users to skip excerpt filtering on a per excerpt basis
= 4.2.2 =
* Fix: The `the_advanced_excerpt()` function was not working on singular page types (pages / posts)
= 4.2.1 =
* Fix: Undefined index errors when using the `the_advanced_excerpt()` function
* Fix: Not excluding tags when using the `exclude_tags` argument in the `the_advanced_excerpt()` function
= 4.2 =
* Feature: Toggle excerpt filtering when there's no break (<!--more-->) tag in the post content
* Feature: Toggle excerpt filtering for the `the_excerpt()` and `the_content()` functions
* Feature: Toggle excerpt filtering on certain page types
* Improvement: Added HTML5 tags to the allowed tags list
* Improvement: Options are now automatically removed from `wp_options` when the plugin is deleted from the dashboard
* Improvement: Added several WordPress filters, allowing developers to extend/modify the default functionality of the plugin
* Improvement: Additional strings were made i18n friendly
* Improvement: All options are now stored in one row in wp_options rather than one row per option
* Improvement: Several UI elements have be reworded and styled differently to improve user experience
* Fix: Now works with themes using `the_content()` on archive pages (i.e. WordPress default themes and others)
* Fix: Notices/warning were appearing when the options were saved while having a checkbox option unchecked
* Fix: The "Read More" link was being incorrectly appended into certain HTML tags, e.g. table tags and list tags
= 4.1 =
* Fix: Template function with custom options works again
* Fix: Data before header bug (retro-fixed in 4.0)
* Feature: Template function also works with array-style parameters
* Removed multibyte support
* Removed PHP 4 support (WP 3.2+ users should be fine, others should update)
* Better code testing before release!
= 4.0 =
* Feature: Brand new parsing algorithm which should resolve some running time issues
* Feature: Options to finish a word or sentence before cutting the excerpt
* Fix: A few small bugs
= 3.1 =
* Fix: A few bugs with custom and character-based excerpts
= 3.0 =
* First major release since 0.2.2 (also removed the `0.` prefix from the version number)
* Feature: Shortcodes can be removed from the excerpt
* Feature: Virtually any HTML tag may now be stripped
* Feature: A read-more link with custom text can be added
* Fix: Word-based excerpt speed improved
* Fix: Template tag function improved
* Fix: Better ellipsis placement