Advertisement
GochiSiyan

shortcode

Jul 25th, 2021
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. function my_wpdiscuz_shortcode() {
  2. $html = "";
  3. if (file_exists(ABSPATH . "wp-content/plugins/wpdiscuz/themes/default/comment-form.php")) {
  4. ob_start();
  5. include_once ABSPATH . "wp-content/plugins/wpdiscuz/themes/default/comment-form.php";
  6. $html = ob_get_clean();
  7. }
  8. return $html;
  9. }
  10. add_shortcode("wpdiscuz_comments", "my_wpdiscuz_shortcode");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement