Skip to content

studiowolf/sw-ready

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sw-ready

This plugin offers a basic set of functions that make it easier and more flexible to integrate WordPress into your own custom theme. It also adds Studio Wolf branding to your /wp-admin/. You can change and alter this plugin to your liking!

Start

  1. Add plugin to your plugin folder
  2. Activate
  3. Check out api.php for the API possibilities
  4. Check out the branding options in sw-ready.php or use the hook that is explained below
  5. Enjoy!

Good to know

As the plugin adds Studio Wolf branding to your /wp-admin/ you might want to change some things. A good hook to change some basic information that gets added is sw_ready_settings. Paste the code below in your theme's functions.php.

function change_brand_settings($settings)
{
        $settings['branding']['contact_name'] = 'Tom Offringa';
        $settings['branding']['contact_email'] = 'tom@studiowolf.com';

        return $settings;
} add_action('sw_ready_settings', 'change_brand_settings');

Check out other branding information in sw-ready.php.

About

Plugin with an easy API and overall WordPress usability improvements

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages