Monthly Archives: October 2017

Load Bootstrap 4 CSS And JS From MaxCDN – The Right Way

Add this to the functions.php of the active theme. /** * Load Bootstrap CSS and JS from MaxCDN – the right way * * @refer https://millionclues.com/wordpress-tips/load-css-and-js-the-right-way/ */ function mcabl1226_load_css_and_js() { // Load Boostrap CSS wp_enqueue_style( ‘bootstrap-css’, ‘https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css’ ); // Load

Posted in WordPress Tagged with: ,

5 Must-Have Gadgets For Students

With the technological advancements in the modern day world, a lot of opportunities open up for people to improve their experiences. Over the years, many user-friendly gadgets have emerged in the market today to tackle the problems people may face

Posted in Guest Posts Tagged with: ,

Translate WordPress Programmatically With Gettext (Without .PO/.MO)

Add this to the functions.php of your theme. This example is to be used with my Ask Me Anything (Anonymously) WordPress plugin. To use it with other themes and plugins, change the text domain of the theme or plugin in

Posted in WordPress Tagged with: ,

Identify Mobile / Tablet / Desktop Using Screen-size in CSS

Add these to your CSS stylesheet as necessary. CSS to be used only on Mobile devices This CSS will be used when the screen width is less than 576px. @media screen and (max-width: 576px) {   .selector {     property: value;   }

Posted in WordPress Tagged with: ,

Web Development Tutorials For Beginners (PHP, CSS)

Free YouTube playlists to learn PHP and CSS PHP Basics Basics + Advanced

Posted in Tutorials Tagged with: