There are very simple steps for Pagination for any type of Post in WordPress by Shortcode with Ajax. Write this below code in you active WordPress theme’s funcntion.php file. ie: wp-contentthemestwentytwentyfunctions.php Put this shortcode […]
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 […]
How To Search In PHP Array Element Containing String | Like Binod
$example = array( “who” => “Who is Binod?”, “name” => “Dose Binod Tharu is Binod?”, “where” => […]
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 […]
I want to remove shortcode from content [vc_row][vc_column][vc_column_text]
$content = get_the_content(); $content = preg_replace(“~(?:[/?)[^/]]+/?]~s”, ”, $content); $content = wp_strip_all_tags($content);echo $content; ### OR ### $content = get_the_content(); $content = do_shortcode($content); echo $content;
How To Disable Automatic Updates in WordPress by Custom Plugin?
Using a simple plugin. Did you know about automatic updates on the WordPress website? Some time Some Core, Plugins, and Themes are auto-update in your […]
The best way to detect a mobile device
<html><head><script src=”https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js”></script><script>var isMobile = false;if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) { // some code write for mobile device… isMobile = true; }else{ isMobile = false; }</script></head><body><div> <center><h1 […]
How to disable automatic updates in wordpress?
Write below code in current WordPress themes in function.php /wp-content/themes/twentytwenty/functions.php/* Disable Automatic Updates in WordPress */function remove_core_updates(){ global $wp_version;return(object) array(‘last_checked’=> time(),’version_checked’=> $wp_version,);}add_filter(‘pre_site_transient_update_core’,’remove_core_updates’);add_filter(‘pre_site_transient_update_plugins’,’remove_core_updates’);add_filter(‘pre_site_transient_update_themes’,’remove_core_updates’);/* .Disable Automatic Updates […]
How do I redirect to another webpage by jQuery?
There are many ways you can do page redirect to another webpage by jQuery. Here I give you two example: 1. Page redirect to another […]
How to create and manage log file in php?
Create and manage crud operation log data PHP <?phpfunction crud_log($action = ”,$message = ”,$array_data = array()){ global $handle_crud_log; date_default_timezone_set(“Australia/Sydney”); //Ex. set australia/sydney timezone $crud_log_dir […]