How to add a 'hot' label to bbpress topics

If you want to add a "hot" label to WordPress bbPress topics whose view count is equal or greater than 30, you can add the following code to "loop-single-topic.php." <?php $now = date("Y-m-d");  /* Today date */ $last_active ...

Read more

How to make comments 'sticky' in WordPress

There is a WordPress plugin named "Sticky Comments" to set comments "sticky" but it seems that it no longer works. I implemented this feature by combining a plugin and a simple jQuery code. 1. First, please install ...

Read more