Category: WordPress

  • Custom Post Type – Add CSS to WordPress Backend

    I recently had some trouble adding CSS to the back end of WordPress for ONLY the custom post type I was creating. Here is the code I ended up using:   /* * Adding the admin.css file to the back end of WordPress */ add_action(‘admin_init’,’load_my_script’); function load_my_script() { global $pagenow, $typenow; if (empty($typenow) && !empty($_GET[‘post’]))…

  • WordPress for Business Websites

    WordPress for Business Websites

    I recently created a new website/blog for small business owners.  This site provides how to guides for those who want to create a business website.  I show people how they can create their website for less than $100/year using WordPress.  If you are thinking of starting a website or you know someone who wants to…