Monthly Archives: August 2017

Embed YouTube Videos On Bootstrap 4 Popup Modals With AutoPlay

Bootstrap 4 does not natively support embedding videos on its modal windows. Here is how to embed YouTube videos on modal popup windows.

Posted in WordPress Tagged with: , , ,

Interesting Writing Tips that Will Help You Write Effectively

Do you want to improve the quality of your writing but don’t know where to start? Check this article to find the list of tips that will help you become a better writer! Writing Tips for Students: How to Learn

Posted in Guest Posts Tagged with: , ,

Escaping Text With Links In WordPress – The Right Way

Escaping a text with links can be replaced if escaped with __() during localization. This not ideal since the person writing the localizing file could replace links with their own. The proper way to do this is explained with an

Posted in WordPress Tagged with: , ,

7 Tips for Building a Profitable Digital Marketing Campaign in 2017

Digital marketing lives in a global marketplace where big and small businesses can compete on the same playing field. Not to mention, consumers have access to the world with the touch of a button. In fact, 2017 is likely to

Posted in Guest Posts Tagged with: , ,

Load CSS and JS the right way

/** * 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

Posted in WordPress Tagged with: