Saturday 29 August 2020

How To Fix Email Spam Issue In Contact Form 7?

 Some times Contact Form 7 gives 

Error: An error occurred while trying to send your message. Please try again later.

on form submit.

That time you need to add this belove filter in functions.php which themes is active in your WordPress site.

       add_filter('wpcf7_spam', '__return_false');




Tuesday 11 August 2020

How To Search In PHP Array Element Containing String | Like Binod


$example = array(
        "who" => "Who is Binod?",
        "name" => "Dose Binod Tharu is Binod?",
"where" => "Where is Binod?",
"whose" => "Whose name is binod?",
"YouTube" => "Dose Binod in the YouTube?",
"meaning" => "What is Binod meaning?",
"fullform" => "What is Binod full form?",
"pronunciation" => "What is Binod pronunciation?",
"english" => "Dose Vinod in english",
"how" => "How to write Vinod in sanskrit?",
"nickname" => "Which best nickname for Vinod?",
"kon" => "Binod kon he?",
"kaha" =>"Binod kaha he?",
"kiska" =>"Binod kiska name he?"
);

$searchword = 'Binod';

$search_results = array_filter($example, function($var) use ($searchword) {
return preg_match("/\b$searchword\b/i", $var); 
});

echo "Search Word: ".$searchword;
echo "<br>Search Results";
echo "<pre>";
echo "Total Search: ".count($search_results);
echo "<hr>";
print_r($search_results);
echo "</pre>";

OutPut:

Wednesday 5 August 2020

How To Create A Navigation Menu In WordPress?

There are very simple steps to Create A Navigation Menu in WordPress.

1. You need to go in the Appearance » Menus page in your WordPress admin dashboard. 2. You can choose the pages you want to add to the menu. 3. Menu Settings » Select Display location. 4. Save menu. 5. You can see on your WordPress Website after refreshing any page. 

You can see Create A Navigation Menu tutorial on the below Video.