Skip to content
How to set up an affiliate site with wordpress

How to Set up an Affiliate Site and Make Money With Your WordPress Site

    You’ve probably heard about the big name bloggers making tens of thousands of dollars every month with their website, but how exactly do they make their money? There are various ways you can make money from a website without physically selling products, but one of the most lucrative and easiest methods is by including affiliate links in your content. Affiliate links are links to products or services on another site that include a special tracking code so that a website… Read More »How to Set up an Affiliate Site and Make Money With Your WordPress Site

    How To Serve Legacy Code Only To Legacy Browsers

      While effective bundling of resources on the web has received a great deal of mindshare in recent times, how we ship front-end resources to our users has remained pretty much the same. The average weight of JavaScript and style resources that a website ships with is rising even though build tooling to optimize the website has never been better. With the marketshare of evergreen browsers rising fast and browsers launching support for new features in lockstep, is it time we… Read More »How To Serve Legacy Code Only To Legacy Browsers

      How to pre-populate WordPress editor with default content

        If you’re often writing the same kind of post (articles, lists, code snippets, etc) you may find very useful to pre-populate the WordPress editor with some custom content. Here’s a super easy code snippet to do it. This code has to be pasted into your theme’s functions.php file. It can be customized to deal with custom post types, as shown on line 16 and after. add_filter( ‘default_content’, ‘pu_default_editor_content’ ); function pu_default_editor_content( $content ) { global $post_type; switch( $post_type ) {… Read More »How to pre-populate WordPress editor with default content

        how to improve wordpress navigation

        How to Improve Your WordPress Site Navigation

          Clear and easy navigation is one of the most important things to get right when you’re building a website. Even if your content is excellent, if your site is difficult to use, visitors will be frustrated and may go elsewhere. Users tend to stick around longer on websites with clear navigation which is good news for you because they’ll read more of your content, view more of your products, and you’ll generally have a better chance of making a sale… Read More »How to Improve Your WordPress Site Navigation