'; $submit_button = ''; $submit_after = ''; return $submit_before . $submit_button . $submit_after; }; // add the filter add_filter( 'comment_form_submit_button', 'articlepress_filter_comment_form_submit_button', 10, 2 ); // Comment form input fields function articlepress_comment_form_default_fields( $fields ) { $commenter = wp_get_current_commenter(); $req = get_option( 'require_name_email' ); $aria_req = $req ? "aria-required='true'" : ''; $fields['author'] = '
'; $fields['email'] = ''; $fields['url'] = '
'; return $fields; } add_filter( 'comment_form_default_fields', 'articlepress_comment_form_default_fields' ); // Comment Textarea function articlepress_comment_form_field_comment( $comment_field ) { $comment_field = '
'; return $comment_field; } add_filter( 'comment_form_field_comment', 'articlepress_comment_form_field_comment' ); // Custom Search Form function articlepress_search_form( $form ) { $form = ''; return $form; } add_filter( 'get_search_form', 'articlepress_search_form', 100 );