B
by grosbouff
4.9 (11 reviews)
bbPress Pencil Unread
bbPress Pencil Unread display which bbPress forums/topics have already been read by the user.
Tested up to WP 5.3 (Current: 6.9.4)
vtrunk
Current Version vtrunk
Updated 6 years ago
Last Update on 13 Jan, 2020
Refreshed 6 hours ago
Last Refreshed on
Rank
#14,828
-4 this week
Active Installs
100+
—
No change
KW Avg Position
119
—
No change
Downloads
16.1K
+3 today
Support Resolved
0%
—
No change
Rating
98%
Review 4.9 out of 5
4.9
(11 reviews)
Next Milestone 200
100+
200+
1,819
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 46 more installs to reach 200+
Rank Changes
Current
#14,828
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
4.9
11 reviews
Overall
98%
5
10
(91%)
4
1
(9%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 2 of 2| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| unread | 68 | — | Tag | 12 hours ago |
| Mark as Read | 170 | — | Tag | 12 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- trunk
- Last Updated
- Jan 13, 2020
- Requires WP
- 0+
- Tested Up To
- 5.3
- PHP Version
- 5.6 or higher
- Author
- grosbouff
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 4.9
- Reviews
- 11
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,708
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#955
User Switching
200K+ installs
#251
Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin
200K+ installs
#262
Photo Gallery by 10Web - Mobile-Friendly Image Gallery
200K+ installs
#280
Frequently Asked Questions
Common questions about bbPress Pencil Unread
Example :
<?php
$last_unread_topics_query_args = array(
'post_type' => bbp_topic_post_type(), //or 'topic'
'posts_per_page' => 5,
'bbppu' => 'unread' //only unread ones
);
$last_unread_topics_query = new WP_Query( $last_unread_topics_query_args );
?>
<?php
$last_unread_topics_query_args = array(
'post_type' => bbp_topic_post_type(), //or 'topic'
'posts_per_page' => 5,
'bbppu' => 'unread' //only unread ones
);
$last_unread_topics_query = new WP_Query( $last_unread_topics_query_args );
?>
For topics, a post meta bbppu_read_by is attached to the topic each time a someone visits it; the meta value is the user ID. When a new reply is added, all those metas are deleted.
For forums, we compare the total count of topics with the total count of read topics for the current user. If it does not match, the forum is considered as unread.
Marking a forum (Mark all as read) adds an entry with the forum ID and timestamp in bbppu_marked_forums (usermeta). When determining if a topic has been read, we check if the topic's forum (or ancestors) has a mark more recent than the topic time.
Marking a forum will only set the topics from this forum as read. If there is super sticky topics displayed and that they belong to other forums, they will not be marked as read.
How can I use those functions outside of the plugin ?
Have a look at the file /bbppu-template.php, which contains functions you could need.
How can I see the plugin's log ?
The plugin will generate various notices and informations in the debug.log file, if debugging is enabled.
For forums, we compare the total count of topics with the total count of read topics for the current user. If it does not match, the forum is considered as unread.
Marking a forum (Mark all as read) adds an entry with the forum ID and timestamp in bbppu_marked_forums (usermeta). When determining if a topic has been read, we check if the topic's forum (or ancestors) has a mark more recent than the topic time.
Marking a forum will only set the topics from this forum as read. If there is super sticky topics displayed and that they belong to other forums, they will not be marked as read.
How can I use those functions outside of the plugin ?
Have a look at the file /bbppu-template.php, which contains functions you could need.
How can I see the plugin's log ?
The plugin will generate various notices and informations in the debug.log file, if debugging is enabled.