Devin Dixon
Devin Dixon

Reputation: 12373

Replacing Wordpress comment_form

I'm trying to replace the comment_form with custom built solution. But I cannot seem to figure out how to do this and the code is lacking:

http://codex.wordpress.org/Function_Reference/comment_form

Ideally, anytime that the comment_form function is called, I want to replace it with an iframe to another site. Is there a way of doing this?

Upvotes: 0

Views: 286

Answers (1)

dev.meghraj
dev.meghraj

Reputation: 9110

there is no way you can overwrite comment_form() function,

if you want to overwrite comment_form then its not possible in right way.

instead you can you use filter like comment_form_before and comment_form_after to achieve what you want.

i am putting this answers because i just see code of comment_form()

something like

<?php add_action('comment_form_before',function(){
          echo '<div style="display:none;">';
      });

      add_action('comment_form_after',function(){
          echo '</div><iframe><iframe>';
      });
?>

Upvotes: 1

Related Questions