'
' . esc_html__( 'Pages:', 'munza' ), 'after' => '
', ) ); } if ( '1' != itr_theme_option( 'page_comments' ) && ( comments_open() || '0' != get_comments_number() ) ) { comments_template(); } ?>
'
' . esc_html__( 'Pages:', 'munza' ), 'after' => '
', ) ); } if ( '1' != itr_theme_option( 'page_comments' ) && ( comments_open() || '0' != get_comments_number() ) ) { comments_template( '', true ); } ?>
'
' . esc_html__( 'Pages:', 'munza' ), 'after' => '
', ) ); } if ( '1' != itr_theme_option( 'page_comments' ) && ( comments_open() || '0' != get_comments_number() ) ) { comments_template(); } ?>
function AjaxShowForm(a, v) { var data = $("#" + v).serialize(); $.ajax({ type: "POST", url: "", data: data, beforeSend: function (html) { // this happens before actual call $("#" + a).html("درحال ارسال.."); $("#" + a).show(); }, success: function (html) { // this happens after we get results $("#" + a).html(""); $("#" + a).show(); if (html == "Ok") { $("#" + a).append("ارسال شد"); } else { $("#" + a).append(html); } } }); return false; }