forked from ddean4040/bbPress-Topics-for-Posts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
206 lines (155 loc) · 8.67 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
=== bbPress Topics for Posts ===
Contributors: ddean
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=6BKDCMJRYPKNN&lc=US&item_name=bbPress%20Post%20Topics¤cy_code=USD
Tags: bbpress, topic, forum, post, page, comments, discussion
Requires at least: 3.1
Tested up to: 3.6
Stable tag: 1.8.1
Replace the comments on your WordPress blog posts with topics from an integrated bbPress install
== Description ==
Adds an option to the Discussion meta box to use a bbPress topic instead of WordPress comments, and displays that topic beneath the post on your site.
You can let the plugin create a new topic for you in the forum of your choice, or specify an existing topic to attach to the post.
A topic can be attached to as many posts as you'd like, but only one topic can currently be attached to a post.
== Installation ==
1. Extract the plugin archive
1. Upload plugin files to your `/wp-content/plugins/` directory
1. Activate the plugin through the 'Plugins' menu in WordPress
== Frequently Asked Questions ==
= I don't see the Discussion meta box. Where is it? =
See <a href="http://www.simplethemes.com/tutorials/help/disable-comments-in-wordpress">this article</a> for a quick tip on how to toggle the Discussion meta box.
== Screenshots ==
1. The post Discussion meta box
1. Default post settings on the Discussion page
1. Comment bubble replaced with the number of forum posts
== Changelog ==
= 1.8.1 =
* Fixed: Posts with draft settings did not have topics created under certain circumstances - thanks, Opinynated
* Fixed: PHP notice when editing global settings for the first time
* Changed: Updated default templates to look better with twentythirteen theme
= 1.8 =
* Added: Anchor for "Respond" / "Leave a reply" links in post listings
* Fixed: Post titles appeared blank when saving under certain circumstances - thanks, Keiser Media and nosignal
* Fixed: Saved draft settings were not reflected when editing the post under certain circumstances - thanks, RobJustice777
* Fixed: A couple other PHP warnings
= 1.7 =
* Fixed: Multiple topics created for posts under certain circumstances - thanks, Erlend Sogge Heggen!
* Fixed: Draft settings not properly deleted when publishing posts
* Changed: Silenced a bunch of warnings for a cleaner debug experience
= 1.6 =
* Changed: Will now create topics for posts marked 'Private' when selected - thanks, dhtc
* Fixed: PHP warning about uninitialized `$bbp` object
* Fixed: topic "Freshness" did not match post date for imported posts- thanks, Justin Mason
* Fixed: comment bubble count didn't match reply count when importing existing comments
* Fixed: post settings for copying tags and comments did not reflect defaults
= 1.5 =
* Added: Can import comments when bulk processing posts (with new default setting)
* Added: Broad support for scheduled posts and those made by plugins
* Added: Delete forum topics when deleting last associated post
* Added: Template functions for integrators / theme developers
* Added: much-needed action hooks -- more to come!
* Added: Debug hooks for diagnosing issues when processing new topics
* Changed: dropped ``$bbp`` for carrying topic ID to template files -- copies of ``comments-bbpress.php`` must be updated
* Changed: Bulk processing now includes posts with topics attached (to copy tags and import comments)
* Changed: Skip ineligible post types during bulk processing - thanks, Gawain Lynch
* Changed: Skip pages during bulk processing (can use filter to include them)
* Fixed: Make path to admin script MU-compatible
* Fixed: Make topic date match post date when importing old posts (or setting post date in the interface) - thanks, casewolf
= 1.4 =
* Fixed: duplicate topics created when updating posts with a default forum set - thanks, nchiari
* Fixed: could not access multiple pages of replies from post - thanks, oddcopter
* Added: bulk create topics for existing posts from the Discussion settings page
= 1.3 =
* Added: support for copying existing comments to bbPress topic - generously contributed by javiarques!
* Added: support for loading template files from theme directory
* Changed: cleaned up the Discussion meta box a bit
* Changed: moved away from $bbp since it has been dropped in bbPress 2.1
* Fixed: not all forums appeared in dropdowns in some cases - thanks, javiarques
= 1.2 =
* Added: support for copying tags from post to topic
* Added: support for creating topics for XML-RPC posts (only if creating a topic is set in defaults)
* Added: translation support - thanks, efedoso
* Changed: addslashes to topic body, fixing some topic content issues - thanks, sangil
= 1.1 =
* Added: support for bbPress 2.1
* Fixed: Bug that broke "Link to topic" option until default discussion settings were saved
= 1.0 =
* Changed: default topic text is processed with kses
* Fixed: bug that could prevent going back to custom settings once defaults were selected
* Fixed: short_open_tag issues - thanks, dalekoop and drsim
* Fixed: error when default discussion settings hadn't been saved - thanks, richardjay
= 0.9.5 =
* Added: option to display only link to topic under post
* Added: option to display newest/oldest x replies under post
* Added: change the content of the new topic from the Discussion settings page
* Added: option to "Use default settings" to keep topic display uniform
* Changed: added placeholder text to make existing topic selection more intuitive - thanks, qgil
* Changed: internal settings storage, for easier future changes
= 0.9 =
* Fixed: bug preventing access to edit posts / pages under some conditions - big thanks, KaiSD
= 0.8 =
* Changed: topic creation runs only when post is published, not when saving a draft
= 0.7 =
* Added: strip shortcodes from excerpt in topic - thanks, wpforchurch
* Added: `bbppt_topic_content_before_link` filter to change topic content without processing the link
* Changed: stopped using deprecated function for excerpt generation
= 0.6 =
* Added: `bbppt_topic_content` filter to let others change the content of new topics
* Changed: Made error strings more detailed when creating or assigning a topic fails
* Fixed: translation function error (used `_(` instead of `__(` - D'oh!) - thanks, justin-mason and David100351
= 0.5 =
* Added: can set creating a bbPress topic for discussion as default for new posts
* Changed: post meta format
= 0.4 =
* Added: option to show only replies on the post / page
* Fixed: link in forum topic was to nowhere - thanks, justin-mason
* Fixed: could not select child forums when creating a new topic - thanks, justin-mason
= 0.3 =
* Added: show reply count instead of comment count for posts with an attached forum topic
* Changed: display an error if bbPress is not detected instead of failing silently
* Changed: how bbPress is detected
= 0.2 =
* Added: can use a topic ID or topic post_name/slug for existing topic
* Added: better handling of bbPress environment
* Fixed: use existing topic now works as expected
* Fixed: finally settled on a name
= 0.1 =
Initial Release
== Upgrade Notice ==
= 1.8.1 =
Bug fix for posts created with front-end editors and theme improvements
NOTE: If you have copied the ``comments-bbpress.php`` file to your theme, read the changelog and check the new file for important changes.
= 1.8 =
Bug fix for disappearing draft settings and post titles
= 1.7 =
Bug fix for duplicate topics when publishing a draft
= 1.6 =
Bug fixes for topic dates, comment counts, and settings display
= 1.5 =
Many fixes and new features.
NOTE: If you have copied the ``comments-bbpress.php`` file to your theme, read the changelog and check the new file for important changes.
= 1.4 =
Bug fix for duplicate topics, pagination issues; added bulk processing of existing posts
= 1.3 =
Bug fix for forum selection and: import existing comments, use your own copies of template files
= 1.2 =
New features! Better translation, XML-RPC support, can copy post tags to topics
= 1.1 =
bbPress 2.1 support
= 1.0 =
Bug fixes for all the new features. All users should upgrade.
= 0.9.5 =
Just new features. Enjoy!
= 0.9 =
Fixed a bug that prevented post / page editing under some circumstances. All users should upgrade.
= 0.8 =
Prevent topic from being created until post is published
= 0.7 =
Strip shortcodes from generated excerpts and update excerpting function
= 0.6 =
Fixed a typo that generates a warning. All users should upgrade.
= 0.5 =
Added settings to Discussion page to make bbPress topics the default commenting option
= 0.4 =
Fixed a bug that put an empty link into forum topics. All users should upgrade.
= 0.3 =
Better error handling and improved integration