https://millionclues.com/wordpress-tips/git-github-basics/
https://millionclues.com/wordpress-tips/git-github-basics/

https://millionclues.com/wordpress-tips/git-github-basics/

By OutsourcedContent — on August 27, 2017 /** * Load CSS and JS the right way * * @since 1.0 * @refer https://developer.wordpress.org/reference/functions/wp_enqueue_style/#comment-340 */ function firerooster_load_css_and_js() { // Load Boostrap CSS wp_enqueue_style( ‘bootstrap-css’, get_template_directory_uri() . ‘/includes/bootstrap4/css/bootstrap.min.css’ ); // Load style.css wp_enqueue_style( ‘style’, get_stylesheet_uri() ); // Load Boostrap JS wp_enqueue_script( ‘bootstrap-js’, get_stylesheet_directory_uri() . ‘/includes/bootstrap4/js/bootstrap.min.js’, array(‘jquery’), ‘1.0’,…

Contact form 7 is undoubtedly one of the most popular plugins in WordPress plugins directory. It makes our life a lot easier by allowing us to create contact forms without any PHP knowledge and add them in our website with the help of shortcode. The plugin is super easy to set up and use. But…

When developing a WordPress theme or a plugin, you may have come across times when you may wish to get category slug in certain pages. May be you are modifying the WordPress category archives or you may have some other reason for wanting to retrieve category slug, in this article we will show you a…

By OutsourcedContent — on October 6, 2017 Add this in functions.php replacing the font of course. /** * Adding Goolge Fonts To WordPress – The Right Way * * @refer https://wp-mix.com/right-way-include-google-fonts-wordpress/ */ function right_way_to_include_google_fonts() { if (!is_admin()) { wp_register_style(‘google’, ‘https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700’, array(), null, ‘all’); wp_enqueue_style(‘google’); } } add_action(‘wp_enqueue_scripts’, ‘right_way_to_include_google_fonts’);

In this article we will show you how to create a back to top button or link on your WordPress website. Back to top button can be useful to visitors reading long articles or browsing large pages. After reading a long article, scrolling browser window back to top can be a little frustrating and not…

Although its personal preference whether you prefer trailing slash at the end of your website URLs or not. But if same webpage content on your website is accessible with two different URLs, one with trailing slash and other without it, then search engines consider it as duplicate content and therefore penalize your website domain in…
