YouTube Tags Generator Enter any keyword: Submit Your virual tags: Copy Text Welcome in SK NETKING, Here you can learn about WordPress tips and tutorials and JavaScript HTML5 CSS and many javascript mini projects. Visit now-> A YouTube tag generator is a tool that can help content creators improve the visibility and discoverability of their videos by suggesting relevant tags to be included in the video's metadata. These tags are used by the YouTube algorithm to determine where a video should appear in its search results and suggested videos section, making it crucial for reaching a larger audience. Adding the right tags can increase views, subscribers, and engagement on a channel. Utilizing a YouTube tag generator can take the guesswork out of including effective tags, saving time and improving the chances of a vide
This function is useful for WordPress developer just copy and paste this code in your functions.php file and save file. And just put this short code in your widget [show_posts posts="1" show_cat="true" order="ASC"] function short_code($atts){ ob_start(); //$featured_img_url = get_the_post_thumbnail_url(get_the_ID(),'full'); extract(shortcode_atts(array( 'posts' => 1, 'cat'=>'', 'show_cat'=>false, 'order'=>'DESC', 'post_id'=>'' ), $atts)); $args = array( 'post_type' => 'post', 'post_status' => 'publish', 'category_name' => '', 'posts_per_page' => $posts, 'orderby'=>$order ); if( empty($post_id)) { $post = get_post($post_id); //assuming $id has been initialized setup_postdata($post); } $arr_posts
How to Fix wp-config.php Errors in WordPress हेल्लो दोस्तों, मै हु श्याम और आज हम बात करेंगे WordPress के एक ऐसे error के बारे में, जो हर एक वर्डप्रेस डेवलपर को कभी ना कभी फेस करना ही पड़ता है। चलिये जानते हैं कि इसे हम कैसे सॉल्व करेंगे। Click here to generate wp-config.php file Possible Errors There doesn't seem to be a wp-config.php file. I need this before we can get started. Unable to write to the wp-config.php file. wp-config.php missing. wp-config.php location on Ubuntu or Cpanel. इतने में से कोई भी error आपको देखने को मिल सकता है। तो चलिए जानते हैं कि इस error को कैसे solve करेंगे। इनमें से कुछ कॉमन errors को सॉल्व करने के लिए आप इस वीडियो को देखें और स्टेप्स को फॉलो करें। अधिकतर problems सॉल्व हो जाएंगी। Manually Create a wp-config.php File Step 1
YouTube Tags Generator Enter any keyword: Submit Your virual tags: Copy Text Welcome in SK NETKING, Here you can learn about WordPress tips and tutorials and JavaScript HTML5 CSS and many javascript mini projects. Visit now-> A YouTube tag generator is a tool that can help content creators improve the visibility and discoverability of their videos by suggesting relevant tags to be included in the video's metadata. These tags are used by the YouTube algorithm to determine where a video should appear in its search results and suggested videos section, making it crucial for reaching a larger audience. Adding the right tags can increase views, subscribers, and engagement on a channel. Utilizing a YouTube tag generator can take the guesswork out of including effective tags, saving time and improving the chances of a vide
This function is useful for WordPress developer just copy and paste this code in your functions.php file and save file. And just put this short code in your widget [show_posts posts="1" show_cat="true" order="ASC"] function short_code($atts){ ob_start(); //$featured_img_url = get_the_post_thumbnail_url(get_the_ID(),'full'); extract(shortcode_atts(array( 'posts' => 1, 'cat'=>'', 'show_cat'=>false, 'order'=>'DESC', 'post_id'=>'' ), $atts)); $args = array( 'post_type' => 'post', 'post_status' => 'publish', 'category_name' => '', 'posts_per_page' => $posts, 'orderby'=>$order ); if( empty($post_id)) { $post = get_post($post_id); //assuming $id has been initialized setup_postdata($post); } $arr_posts
How to Fix wp-config.php Errors in WordPress हेल्लो दोस्तों, मै हु श्याम और आज हम बात करेंगे WordPress के एक ऐसे error के बारे में, जो हर एक वर्डप्रेस डेवलपर को कभी ना कभी फेस करना ही पड़ता है। चलिये जानते हैं कि इसे हम कैसे सॉल्व करेंगे। Click here to generate wp-config.php file Possible Errors There doesn't seem to be a wp-config.php file. I need this before we can get started. Unable to write to the wp-config.php file. wp-config.php missing. wp-config.php location on Ubuntu or Cpanel. इतने में से कोई भी error आपको देखने को मिल सकता है। तो चलिए जानते हैं कि इस error को कैसे solve करेंगे। इनमें से कुछ कॉमन errors को सॉल्व करने के लिए आप इस वीडियो को देखें और स्टेप्स को फॉलो करें। अधिकतर problems सॉल्व हो जाएंगी। Manually Create a wp-config.php File Step 1
In WordPress, making an AJAX request is slightly different due to the way the platform handles backend requests. Let's walk through an example where we perform an AJAX request in a WordPress blog post to fetch a "Hello World" message using the WordPress AJAX API. Steps: **Set up the AJAX handler in PHP (functions.php or custom plugin). **Use JavaScript/jQuery in your blog post or theme to make the request.** Set Up the AJAX Handler in `functions.php`: Add the following code to your theme's `functions.php` file or inside a custom plugin. This sets up the AJAX handler for both logged-in and logged-out users. // Enqueue the script to be used on the front-end function my_enqueue_ajax_script() { wp_enqueue_script('my-ajax-script', get_template_directory_uri() . '/js/my-ajax.js', array('jquery'), null, true); // Localize script to pass AJAX URL to JS wp_localize_script('my-ajax-sc
2 Comments
Nice tool .
ReplyDeleteAdd full screen note pad feature -
ReplyDelete// Full screen functionality
const fullscreenButton = document.getElementById('fullscreen-btn');
fullscreenButton.addEventListener('click', () => {
const elem = document.getElementById('fullgame');
if (!document.fullscreenElement) {
if (elem.requestFullscreen) {
elem.requestFullscreen();
} else if (elem.mozRequestFullScreen) { // Firefox
elem.mozRequestFullScreen();
} else if (elem.webkitRequestFullscreen) { // Chrome, Safari and Opera
elem.webkitRequestFullscreen();
} else if (elem.msRequestFullscreen) { // IE/Edge
elem.msRequestFullscreen();
}
} else {
if (document.exitFullscreen) {
document.exitFullscreen();
} else if (document.mozCancelFullScreen) { // Firefox
document.mozCancelFullScreen();
} else if (document.webkitExitFullscreen) { // Chrome, Safari and Opera
document.webkitExitFullscreen();
} else if (document.msExitFullscreen) { // IE/Edge
document.msExitFullscreen();
}
}
});