Determining a Site’s CMS

When beginning the content migration portion of the intake process it is generally helpful to know what CMS the existing site is built with. A tool called Built With is a great aid in determining this information. Follow the steps below to find a site’s CMS: Go to https://builtwith.com/ Type in the existing site URL in […]

Load Google Fonts Asynchronously For Page Speed

Add this snippet to the “themenamehere_load_scripts()” function in your theme’s functions.php wp_enqueue_script( ‘google-webfonts’, ‘https://ajax.googleapis.com/ajax/libs/webfont/1.5.18/webfont.js’, array( ‘jquery’ ), ‘1.5.18’ ); wp_enqueue_script( ‘custom-gfonts’, get_bloginfo( ‘stylesheet_directory’ ) . ‘/js/fonts.js’, array( ‘jquery’ ), ‘1.0.0’ ); Create a file in your themes js folder named fonts.js. Paste in the code below. Of course change the fonts as needed here. WebFont.load({ […]