Current File : /home/quantums/alhidayamaintenance.com/wp-content/themes/eyecraftersny-child/functions.php |
<?php
/**
*/
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles', 11 );
function my_theme_enqueue_styles() {
wp_enqueue_style( 'child-style', get_stylesheet_uri() );
}
add_filter('use_block_editor_for_post', '__return_false', 10);
function my_custom_menu() {
register_nav_menu('my-mobile-menu',__( 'Mobile Menu' ));
}
add_action( 'init', 'my_custom_menu' );
add_action( 'wp_ajax_faq_actions', 'faq_actions' );
add_action( 'wp_ajax_nopriv_faq_actions', 'faq_actions' );
function faq_actions(){
$admin_email = get_option('admin_email');
$faqForm=$_REQUEST['faqForm'];
$message="";
$message.="Question: ".$faqForm['faq_first']."<br> Ans: ".$faqForm['faq_first_ans']."<br>";
$message.="Question: ".$faqForm['faq_second']."<br> Ans: ".$faqForm['faq_second_ans']."<br>";
$message.="Question: ".$faqForm['faq_three']."<br> Ans: ".$faqForm['faq_three_ans']."<br>";
$message.="Question: ".$faqForm['faq_four']."<br> Ans: ".$faqForm['faq_four_ans']."<br>";
$message.="Question: ".$faqForm['faq_five']."<br> Ans: ".$faqForm['faq_five_ans']."<br>";
$to = $admin_email;
$subject = 'FAQs';
$body = $message;
$headers = array('Content-Type: text/html; charset=UTF-8');
wp_mail( $to, $subject, $body, $headers );
}
?>