Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. function mytheme_theme() {
  2. $items = array();
  3. $items['comment_form'] = array('comment_form' => array('arguments' => array('form' => NULL)));
  4. return $items;
  5. }
  6.  
  7. <?php
  8. function mytheme_comment_form($form) {
  9. // stuff goes here
  10. }
  11. ?>
  12.  
  13. $form['some_markup'] = array(
  14. '#markup' => '<p>this is some markup</p>',
  15. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement