Show top level comments ordered by number of replies
Show top level comments ordered by number of replies
Show top level comments ordered by number of replies
Comments not nesed with custom template
What you’re asking a too broad to decently fit in WPSE’s Q&A format, but I’ll try to sketch an approach that could work. From what I understand you have 10.000 database items that are not WordPress (custom) posts. You still want to present them as WordPress pages and enable comments per item. I’m guessing that … Read more
Once you restore the posts that are trashed you can try running the comment-fix.php script to reset the comments to appear and show the correct count. If it has been over thirty days in the trash the comments are gone for good, sorry.
You can use WordPress’s built in TinyMCE editor anywhere in PHP code using wp_editor(). This would output all the necessary styles and scripts for it to load, and there are a lot of options documented in the codex link above.
How to allow a particular role like Contributor be able to only view pending comments and approve them?
Disable Post/Page comment emails for creators
Maybe I was burned out from work before, but this morning I took another go at the same code and managed to get it running properly. if ( ! function_exists( ‘comment_imgs’ ) ) { add_filter( ‘get_comment_author_url’, ‘comment_imgs’ ); function comment_imgs( $avatar, $id_or_email, $size, $default, $alt ) { global $comment; // We do not get the … Read more
Comment pagination – How to show determined number of comments on the first page?
Based on this tutorial , here is an answer to a similar question. This may also help. I hope this will help you start your journey by some tweaks and adjustment with code.