├── README.md ├── chapter_04 ├── v1 │ └── wicked │ │ ├── functions.php │ │ ├── readme.txt │ │ └── style.css ├── v2 │ └── wicked │ │ ├── functions.php │ │ ├── readme.txt │ │ └── style.css ├── v3 │ └── wicked │ │ ├── functions.php │ │ ├── newstyles.css │ │ ├── readme.txt │ │ └── style.css └── v4 │ └── wicked │ ├── functions.php │ ├── gradient.png │ ├── redshoes.jpg │ ├── style.css │ ├── theshoes.jpg │ └── wallofshoes.jpg ├── chapter_05 ├── v1 │ └── wicked │ │ ├── functions.php │ │ ├── home.php │ │ ├── newstyles.css │ │ ├── readme.txt │ │ └── style.css ├── v2 │ └── wicked │ │ ├── footer-homepage.php │ │ ├── functions.php │ │ ├── home.php │ │ ├── newstyles.css │ │ ├── readme.txt │ │ └── style.css ├── v3 │ └── wicked │ │ ├── footer-homepage.php │ │ ├── functions.php │ │ ├── home.php │ │ ├── images │ │ └── favicon.ico │ │ ├── newstyles.css │ │ ├── readme.txt │ │ └── style.css ├── v4 │ └── wicked │ │ ├── footer-homepage.php │ │ ├── functions.php │ │ ├── home.php │ │ ├── images │ │ └── favicon.ico │ │ ├── newstyles.css │ │ ├── readme.txt │ │ └── style.css ├── v5 │ └── wicked │ │ ├── footer-homepage.php │ │ ├── functions.php │ │ ├── home.php │ │ ├── images │ │ └── favicon.ico │ │ ├── newstyles.css │ │ ├── readme.txt │ │ └── style.css └── v6 │ └── wicked │ ├── footer-homepage.php │ ├── functions.php │ ├── home.php │ ├── images │ └── favicon.ico │ ├── newstyles.css │ ├── readme.txt │ └── style.css ├── chapter_06 ├── v1 │ └── wicked │ │ ├── footer-homepage.php │ │ ├── functions.php │ │ ├── home.php │ │ ├── images │ │ └── favicon.ico │ │ ├── newstyles.css │ │ ├── readme.txt │ │ └── style.css ├── v2 │ └── wicked │ │ ├── footer-homepage.php │ │ ├── functions.php │ │ ├── home.php │ │ ├── images │ │ └── favicon.ico │ │ ├── library │ │ └── widget-areas.php │ │ ├── newstyles.css │ │ ├── readme.txt │ │ └── style.css ├── v3 │ └── wicked │ │ ├── footer-homepage.php │ │ ├── functions.php │ │ ├── home.php │ │ ├── images │ │ └── favicon.ico │ │ ├── library │ │ └── widget-areas.php │ │ ├── newstyles.css │ │ ├── readme.txt │ │ └── style.css └── v4 │ └── wicked │ ├── footer-homepage.php │ ├── functions.php │ ├── home.php │ ├── images │ └── favicon.ico │ ├── library │ └── widget-areas.php │ ├── newstyles.css │ ├── readme.txt │ ├── style.css │ └── widgets │ └── author-data.php └── chapter_07 ├── v1 └── wicked │ ├── footer-homepage.php │ ├── functions.php │ ├── home.php │ ├── images │ ├── favicon.ico │ └── header.png │ ├── library │ ├── options.php │ ├── style-options.php │ └── widget-areas.php │ ├── newstyles.css │ ├── readme.txt │ ├── style.css │ └── widgets │ └── author-data.php ├── v2 └── wicked │ ├── footer-homepage.php │ ├── functions.php │ ├── home.php │ ├── images │ ├── favicon.ico │ └── header.png │ ├── library │ ├── options.php │ ├── style-options.php │ └── widget-areas.php │ ├── newstyles.css │ ├── readme.txt │ ├── style.css │ └── widgets │ └── author-data.php ├── v3 └── wicked │ ├── footer-homepage.php │ ├── functions.php │ ├── home.php │ ├── images │ ├── favicon.ico │ └── header.png │ ├── library │ ├── options.php │ ├── style-options.php │ └── widget-areas.php │ ├── newstyles.css │ ├── readme.txt │ ├── skins │ ├── blue │ │ ├── header.png │ │ ├── sk8r_header.png │ │ └── skin.css │ ├── red │ │ ├── header.png │ │ └── skin.css │ └── yellow │ │ ├── header.png │ │ └── skin.css │ ├── style.css │ └── widgets │ └── author-data.php ├── v4 └── wicked │ ├── footer-homepage.php │ ├── functions.php │ ├── home.php │ ├── images │ ├── favicon.ico │ └── header.png │ ├── library │ ├── options.php │ ├── style-options.php │ └── widget-areas.php │ ├── mission-statement.php │ ├── newstyles.css │ ├── readme.txt │ ├── skins │ ├── blue │ │ ├── header.png │ │ ├── sk8r_header.png │ │ └── skin.css │ ├── red │ │ ├── header.png │ │ └── skin.css │ └── yellow │ │ ├── header.png │ │ └── skin.css │ ├── style.css │ └── widgets │ └── author-data.php ├── v5 └── wicked │ ├── footer-homepage.php │ ├── functions.php │ ├── home.php │ ├── images │ ├── favicon.ico │ └── header.png │ ├── library │ ├── options.php │ ├── style-options.php │ └── widget-areas.php │ ├── mission-statement.php │ ├── newstyles.css │ ├── readme.txt │ ├── skins │ ├── blue │ │ ├── header.png │ │ ├── sk8r_header.png │ │ └── skin.css │ ├── red │ │ ├── header.png │ │ └── skin.css │ └── yellow │ │ ├── header.png │ │ └── skin.css │ ├── style.css │ └── widgets │ └── author-data.php └── v6 └── wicked ├── footer-homepage.php ├── functions.php ├── home.php ├── images ├── favicon.ico └── header.png ├── library ├── options.php ├── style-options.php └── widget-areas.php ├── mission-statement.php ├── newstyles.css ├── readme.txt ├── skins ├── blue │ ├── header.png │ ├── sk8r_header.png │ └── skin.css ├── red │ ├── header.png │ └── skin.css └── yellow │ ├── header.png │ └── skin.css ├── style.css └── widgets └── author-data.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/README.md -------------------------------------------------------------------------------- /chapter_04/v1/wicked/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_04/v1/wicked/functions.php -------------------------------------------------------------------------------- /chapter_04/v1/wicked/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_04/v1/wicked/readme.txt -------------------------------------------------------------------------------- /chapter_04/v1/wicked/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_04/v1/wicked/style.css -------------------------------------------------------------------------------- /chapter_04/v2/wicked/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_04/v2/wicked/functions.php -------------------------------------------------------------------------------- /chapter_04/v2/wicked/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_04/v2/wicked/readme.txt -------------------------------------------------------------------------------- /chapter_04/v2/wicked/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_04/v2/wicked/style.css -------------------------------------------------------------------------------- /chapter_04/v3/wicked/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_04/v3/wicked/functions.php -------------------------------------------------------------------------------- /chapter_04/v3/wicked/newstyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_04/v3/wicked/newstyles.css -------------------------------------------------------------------------------- /chapter_04/v3/wicked/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_04/v3/wicked/readme.txt -------------------------------------------------------------------------------- /chapter_04/v3/wicked/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_04/v3/wicked/style.css -------------------------------------------------------------------------------- /chapter_04/v4/wicked/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_04/v4/wicked/functions.php -------------------------------------------------------------------------------- /chapter_04/v4/wicked/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_04/v4/wicked/gradient.png -------------------------------------------------------------------------------- /chapter_04/v4/wicked/redshoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_04/v4/wicked/redshoes.jpg -------------------------------------------------------------------------------- /chapter_04/v4/wicked/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_04/v4/wicked/style.css -------------------------------------------------------------------------------- /chapter_04/v4/wicked/theshoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_04/v4/wicked/theshoes.jpg -------------------------------------------------------------------------------- /chapter_04/v4/wicked/wallofshoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_04/v4/wicked/wallofshoes.jpg -------------------------------------------------------------------------------- /chapter_05/v1/wicked/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v1/wicked/functions.php -------------------------------------------------------------------------------- /chapter_05/v1/wicked/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v1/wicked/home.php -------------------------------------------------------------------------------- /chapter_05/v1/wicked/newstyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v1/wicked/newstyles.css -------------------------------------------------------------------------------- /chapter_05/v1/wicked/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v1/wicked/readme.txt -------------------------------------------------------------------------------- /chapter_05/v1/wicked/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v1/wicked/style.css -------------------------------------------------------------------------------- /chapter_05/v2/wicked/footer-homepage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v2/wicked/footer-homepage.php -------------------------------------------------------------------------------- /chapter_05/v2/wicked/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v2/wicked/functions.php -------------------------------------------------------------------------------- /chapter_05/v2/wicked/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v2/wicked/home.php -------------------------------------------------------------------------------- /chapter_05/v2/wicked/newstyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v2/wicked/newstyles.css -------------------------------------------------------------------------------- /chapter_05/v2/wicked/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v2/wicked/readme.txt -------------------------------------------------------------------------------- /chapter_05/v2/wicked/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v2/wicked/style.css -------------------------------------------------------------------------------- /chapter_05/v3/wicked/footer-homepage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v3/wicked/footer-homepage.php -------------------------------------------------------------------------------- /chapter_05/v3/wicked/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v3/wicked/functions.php -------------------------------------------------------------------------------- /chapter_05/v3/wicked/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v3/wicked/home.php -------------------------------------------------------------------------------- /chapter_05/v3/wicked/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v3/wicked/images/favicon.ico -------------------------------------------------------------------------------- /chapter_05/v3/wicked/newstyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v3/wicked/newstyles.css -------------------------------------------------------------------------------- /chapter_05/v3/wicked/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v3/wicked/readme.txt -------------------------------------------------------------------------------- /chapter_05/v3/wicked/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v3/wicked/style.css -------------------------------------------------------------------------------- /chapter_05/v4/wicked/footer-homepage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v4/wicked/footer-homepage.php -------------------------------------------------------------------------------- /chapter_05/v4/wicked/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v4/wicked/functions.php -------------------------------------------------------------------------------- /chapter_05/v4/wicked/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v4/wicked/home.php -------------------------------------------------------------------------------- /chapter_05/v4/wicked/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v4/wicked/images/favicon.ico -------------------------------------------------------------------------------- /chapter_05/v4/wicked/newstyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v4/wicked/newstyles.css -------------------------------------------------------------------------------- /chapter_05/v4/wicked/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v4/wicked/readme.txt -------------------------------------------------------------------------------- /chapter_05/v4/wicked/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v4/wicked/style.css -------------------------------------------------------------------------------- /chapter_05/v5/wicked/footer-homepage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v5/wicked/footer-homepage.php -------------------------------------------------------------------------------- /chapter_05/v5/wicked/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v5/wicked/functions.php -------------------------------------------------------------------------------- /chapter_05/v5/wicked/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v5/wicked/home.php -------------------------------------------------------------------------------- /chapter_05/v5/wicked/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v5/wicked/images/favicon.ico -------------------------------------------------------------------------------- /chapter_05/v5/wicked/newstyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v5/wicked/newstyles.css -------------------------------------------------------------------------------- /chapter_05/v5/wicked/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v5/wicked/readme.txt -------------------------------------------------------------------------------- /chapter_05/v5/wicked/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v5/wicked/style.css -------------------------------------------------------------------------------- /chapter_05/v6/wicked/footer-homepage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v6/wicked/footer-homepage.php -------------------------------------------------------------------------------- /chapter_05/v6/wicked/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v6/wicked/functions.php -------------------------------------------------------------------------------- /chapter_05/v6/wicked/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v6/wicked/home.php -------------------------------------------------------------------------------- /chapter_05/v6/wicked/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v6/wicked/images/favicon.ico -------------------------------------------------------------------------------- /chapter_05/v6/wicked/newstyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v6/wicked/newstyles.css -------------------------------------------------------------------------------- /chapter_05/v6/wicked/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v6/wicked/readme.txt -------------------------------------------------------------------------------- /chapter_05/v6/wicked/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_05/v6/wicked/style.css -------------------------------------------------------------------------------- /chapter_06/v1/wicked/footer-homepage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v1/wicked/footer-homepage.php -------------------------------------------------------------------------------- /chapter_06/v1/wicked/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v1/wicked/functions.php -------------------------------------------------------------------------------- /chapter_06/v1/wicked/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v1/wicked/home.php -------------------------------------------------------------------------------- /chapter_06/v1/wicked/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v1/wicked/images/favicon.ico -------------------------------------------------------------------------------- /chapter_06/v1/wicked/newstyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v1/wicked/newstyles.css -------------------------------------------------------------------------------- /chapter_06/v1/wicked/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v1/wicked/readme.txt -------------------------------------------------------------------------------- /chapter_06/v1/wicked/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v1/wicked/style.css -------------------------------------------------------------------------------- /chapter_06/v2/wicked/footer-homepage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v2/wicked/footer-homepage.php -------------------------------------------------------------------------------- /chapter_06/v2/wicked/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v2/wicked/functions.php -------------------------------------------------------------------------------- /chapter_06/v2/wicked/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v2/wicked/home.php -------------------------------------------------------------------------------- /chapter_06/v2/wicked/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v2/wicked/images/favicon.ico -------------------------------------------------------------------------------- /chapter_06/v2/wicked/library/widget-areas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v2/wicked/library/widget-areas.php -------------------------------------------------------------------------------- /chapter_06/v2/wicked/newstyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v2/wicked/newstyles.css -------------------------------------------------------------------------------- /chapter_06/v2/wicked/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v2/wicked/readme.txt -------------------------------------------------------------------------------- /chapter_06/v2/wicked/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v2/wicked/style.css -------------------------------------------------------------------------------- /chapter_06/v3/wicked/footer-homepage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v3/wicked/footer-homepage.php -------------------------------------------------------------------------------- /chapter_06/v3/wicked/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v3/wicked/functions.php -------------------------------------------------------------------------------- /chapter_06/v3/wicked/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v3/wicked/home.php -------------------------------------------------------------------------------- /chapter_06/v3/wicked/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v3/wicked/images/favicon.ico -------------------------------------------------------------------------------- /chapter_06/v3/wicked/library/widget-areas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v3/wicked/library/widget-areas.php -------------------------------------------------------------------------------- /chapter_06/v3/wicked/newstyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v3/wicked/newstyles.css -------------------------------------------------------------------------------- /chapter_06/v3/wicked/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v3/wicked/readme.txt -------------------------------------------------------------------------------- /chapter_06/v3/wicked/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v3/wicked/style.css -------------------------------------------------------------------------------- /chapter_06/v4/wicked/footer-homepage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v4/wicked/footer-homepage.php -------------------------------------------------------------------------------- /chapter_06/v4/wicked/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v4/wicked/functions.php -------------------------------------------------------------------------------- /chapter_06/v4/wicked/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v4/wicked/home.php -------------------------------------------------------------------------------- /chapter_06/v4/wicked/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v4/wicked/images/favicon.ico -------------------------------------------------------------------------------- /chapter_06/v4/wicked/library/widget-areas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v4/wicked/library/widget-areas.php -------------------------------------------------------------------------------- /chapter_06/v4/wicked/newstyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v4/wicked/newstyles.css -------------------------------------------------------------------------------- /chapter_06/v4/wicked/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v4/wicked/readme.txt -------------------------------------------------------------------------------- /chapter_06/v4/wicked/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v4/wicked/style.css -------------------------------------------------------------------------------- /chapter_06/v4/wicked/widgets/author-data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_06/v4/wicked/widgets/author-data.php -------------------------------------------------------------------------------- /chapter_07/v1/wicked/footer-homepage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v1/wicked/footer-homepage.php -------------------------------------------------------------------------------- /chapter_07/v1/wicked/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v1/wicked/functions.php -------------------------------------------------------------------------------- /chapter_07/v1/wicked/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v1/wicked/home.php -------------------------------------------------------------------------------- /chapter_07/v1/wicked/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v1/wicked/images/favicon.ico -------------------------------------------------------------------------------- /chapter_07/v1/wicked/images/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v1/wicked/images/header.png -------------------------------------------------------------------------------- /chapter_07/v1/wicked/library/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v1/wicked/library/options.php -------------------------------------------------------------------------------- /chapter_07/v1/wicked/library/style-options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v1/wicked/library/style-options.php -------------------------------------------------------------------------------- /chapter_07/v1/wicked/library/widget-areas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v1/wicked/library/widget-areas.php -------------------------------------------------------------------------------- /chapter_07/v1/wicked/newstyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v1/wicked/newstyles.css -------------------------------------------------------------------------------- /chapter_07/v1/wicked/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v1/wicked/readme.txt -------------------------------------------------------------------------------- /chapter_07/v1/wicked/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v1/wicked/style.css -------------------------------------------------------------------------------- /chapter_07/v1/wicked/widgets/author-data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v1/wicked/widgets/author-data.php -------------------------------------------------------------------------------- /chapter_07/v2/wicked/footer-homepage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v2/wicked/footer-homepage.php -------------------------------------------------------------------------------- /chapter_07/v2/wicked/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v2/wicked/functions.php -------------------------------------------------------------------------------- /chapter_07/v2/wicked/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v2/wicked/home.php -------------------------------------------------------------------------------- /chapter_07/v2/wicked/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v2/wicked/images/favicon.ico -------------------------------------------------------------------------------- /chapter_07/v2/wicked/images/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v2/wicked/images/header.png -------------------------------------------------------------------------------- /chapter_07/v2/wicked/library/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v2/wicked/library/options.php -------------------------------------------------------------------------------- /chapter_07/v2/wicked/library/style-options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v2/wicked/library/style-options.php -------------------------------------------------------------------------------- /chapter_07/v2/wicked/library/widget-areas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v2/wicked/library/widget-areas.php -------------------------------------------------------------------------------- /chapter_07/v2/wicked/newstyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v2/wicked/newstyles.css -------------------------------------------------------------------------------- /chapter_07/v2/wicked/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v2/wicked/readme.txt -------------------------------------------------------------------------------- /chapter_07/v2/wicked/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v2/wicked/style.css -------------------------------------------------------------------------------- /chapter_07/v2/wicked/widgets/author-data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v2/wicked/widgets/author-data.php -------------------------------------------------------------------------------- /chapter_07/v3/wicked/footer-homepage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v3/wicked/footer-homepage.php -------------------------------------------------------------------------------- /chapter_07/v3/wicked/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v3/wicked/functions.php -------------------------------------------------------------------------------- /chapter_07/v3/wicked/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v3/wicked/home.php -------------------------------------------------------------------------------- /chapter_07/v3/wicked/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v3/wicked/images/favicon.ico -------------------------------------------------------------------------------- /chapter_07/v3/wicked/images/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v3/wicked/images/header.png -------------------------------------------------------------------------------- /chapter_07/v3/wicked/library/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v3/wicked/library/options.php -------------------------------------------------------------------------------- /chapter_07/v3/wicked/library/style-options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v3/wicked/library/style-options.php -------------------------------------------------------------------------------- /chapter_07/v3/wicked/library/widget-areas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v3/wicked/library/widget-areas.php -------------------------------------------------------------------------------- /chapter_07/v3/wicked/newstyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v3/wicked/newstyles.css -------------------------------------------------------------------------------- /chapter_07/v3/wicked/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v3/wicked/readme.txt -------------------------------------------------------------------------------- /chapter_07/v3/wicked/skins/blue/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v3/wicked/skins/blue/header.png -------------------------------------------------------------------------------- /chapter_07/v3/wicked/skins/blue/sk8r_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v3/wicked/skins/blue/sk8r_header.png -------------------------------------------------------------------------------- /chapter_07/v3/wicked/skins/blue/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v3/wicked/skins/blue/skin.css -------------------------------------------------------------------------------- /chapter_07/v3/wicked/skins/red/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v3/wicked/skins/red/header.png -------------------------------------------------------------------------------- /chapter_07/v3/wicked/skins/red/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v3/wicked/skins/red/skin.css -------------------------------------------------------------------------------- /chapter_07/v3/wicked/skins/yellow/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v3/wicked/skins/yellow/header.png -------------------------------------------------------------------------------- /chapter_07/v3/wicked/skins/yellow/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v3/wicked/skins/yellow/skin.css -------------------------------------------------------------------------------- /chapter_07/v3/wicked/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v3/wicked/style.css -------------------------------------------------------------------------------- /chapter_07/v3/wicked/widgets/author-data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v3/wicked/widgets/author-data.php -------------------------------------------------------------------------------- /chapter_07/v4/wicked/footer-homepage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v4/wicked/footer-homepage.php -------------------------------------------------------------------------------- /chapter_07/v4/wicked/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v4/wicked/functions.php -------------------------------------------------------------------------------- /chapter_07/v4/wicked/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v4/wicked/home.php -------------------------------------------------------------------------------- /chapter_07/v4/wicked/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v4/wicked/images/favicon.ico -------------------------------------------------------------------------------- /chapter_07/v4/wicked/images/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v4/wicked/images/header.png -------------------------------------------------------------------------------- /chapter_07/v4/wicked/library/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v4/wicked/library/options.php -------------------------------------------------------------------------------- /chapter_07/v4/wicked/library/style-options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v4/wicked/library/style-options.php -------------------------------------------------------------------------------- /chapter_07/v4/wicked/library/widget-areas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v4/wicked/library/widget-areas.php -------------------------------------------------------------------------------- /chapter_07/v4/wicked/mission-statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v4/wicked/mission-statement.php -------------------------------------------------------------------------------- /chapter_07/v4/wicked/newstyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v4/wicked/newstyles.css -------------------------------------------------------------------------------- /chapter_07/v4/wicked/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v4/wicked/readme.txt -------------------------------------------------------------------------------- /chapter_07/v4/wicked/skins/blue/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v4/wicked/skins/blue/header.png -------------------------------------------------------------------------------- /chapter_07/v4/wicked/skins/blue/sk8r_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v4/wicked/skins/blue/sk8r_header.png -------------------------------------------------------------------------------- /chapter_07/v4/wicked/skins/blue/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v4/wicked/skins/blue/skin.css -------------------------------------------------------------------------------- /chapter_07/v4/wicked/skins/red/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v4/wicked/skins/red/header.png -------------------------------------------------------------------------------- /chapter_07/v4/wicked/skins/red/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v4/wicked/skins/red/skin.css -------------------------------------------------------------------------------- /chapter_07/v4/wicked/skins/yellow/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v4/wicked/skins/yellow/header.png -------------------------------------------------------------------------------- /chapter_07/v4/wicked/skins/yellow/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v4/wicked/skins/yellow/skin.css -------------------------------------------------------------------------------- /chapter_07/v4/wicked/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v4/wicked/style.css -------------------------------------------------------------------------------- /chapter_07/v4/wicked/widgets/author-data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v4/wicked/widgets/author-data.php -------------------------------------------------------------------------------- /chapter_07/v5/wicked/footer-homepage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v5/wicked/footer-homepage.php -------------------------------------------------------------------------------- /chapter_07/v5/wicked/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v5/wicked/functions.php -------------------------------------------------------------------------------- /chapter_07/v5/wicked/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v5/wicked/home.php -------------------------------------------------------------------------------- /chapter_07/v5/wicked/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v5/wicked/images/favicon.ico -------------------------------------------------------------------------------- /chapter_07/v5/wicked/images/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v5/wicked/images/header.png -------------------------------------------------------------------------------- /chapter_07/v5/wicked/library/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v5/wicked/library/options.php -------------------------------------------------------------------------------- /chapter_07/v5/wicked/library/style-options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v5/wicked/library/style-options.php -------------------------------------------------------------------------------- /chapter_07/v5/wicked/library/widget-areas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v5/wicked/library/widget-areas.php -------------------------------------------------------------------------------- /chapter_07/v5/wicked/mission-statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v5/wicked/mission-statement.php -------------------------------------------------------------------------------- /chapter_07/v5/wicked/newstyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v5/wicked/newstyles.css -------------------------------------------------------------------------------- /chapter_07/v5/wicked/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v5/wicked/readme.txt -------------------------------------------------------------------------------- /chapter_07/v5/wicked/skins/blue/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v5/wicked/skins/blue/header.png -------------------------------------------------------------------------------- /chapter_07/v5/wicked/skins/blue/sk8r_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v5/wicked/skins/blue/sk8r_header.png -------------------------------------------------------------------------------- /chapter_07/v5/wicked/skins/blue/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v5/wicked/skins/blue/skin.css -------------------------------------------------------------------------------- /chapter_07/v5/wicked/skins/red/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v5/wicked/skins/red/header.png -------------------------------------------------------------------------------- /chapter_07/v5/wicked/skins/red/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v5/wicked/skins/red/skin.css -------------------------------------------------------------------------------- /chapter_07/v5/wicked/skins/yellow/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v5/wicked/skins/yellow/header.png -------------------------------------------------------------------------------- /chapter_07/v5/wicked/skins/yellow/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v5/wicked/skins/yellow/skin.css -------------------------------------------------------------------------------- /chapter_07/v5/wicked/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v5/wicked/style.css -------------------------------------------------------------------------------- /chapter_07/v5/wicked/widgets/author-data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v5/wicked/widgets/author-data.php -------------------------------------------------------------------------------- /chapter_07/v6/wicked/footer-homepage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v6/wicked/footer-homepage.php -------------------------------------------------------------------------------- /chapter_07/v6/wicked/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v6/wicked/functions.php -------------------------------------------------------------------------------- /chapter_07/v6/wicked/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v6/wicked/home.php -------------------------------------------------------------------------------- /chapter_07/v6/wicked/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v6/wicked/images/favicon.ico -------------------------------------------------------------------------------- /chapter_07/v6/wicked/images/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v6/wicked/images/header.png -------------------------------------------------------------------------------- /chapter_07/v6/wicked/library/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v6/wicked/library/options.php -------------------------------------------------------------------------------- /chapter_07/v6/wicked/library/style-options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v6/wicked/library/style-options.php -------------------------------------------------------------------------------- /chapter_07/v6/wicked/library/widget-areas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v6/wicked/library/widget-areas.php -------------------------------------------------------------------------------- /chapter_07/v6/wicked/mission-statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v6/wicked/mission-statement.php -------------------------------------------------------------------------------- /chapter_07/v6/wicked/newstyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v6/wicked/newstyles.css -------------------------------------------------------------------------------- /chapter_07/v6/wicked/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v6/wicked/readme.txt -------------------------------------------------------------------------------- /chapter_07/v6/wicked/skins/blue/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v6/wicked/skins/blue/header.png -------------------------------------------------------------------------------- /chapter_07/v6/wicked/skins/blue/sk8r_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v6/wicked/skins/blue/sk8r_header.png -------------------------------------------------------------------------------- /chapter_07/v6/wicked/skins/blue/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v6/wicked/skins/blue/skin.css -------------------------------------------------------------------------------- /chapter_07/v6/wicked/skins/red/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v6/wicked/skins/red/header.png -------------------------------------------------------------------------------- /chapter_07/v6/wicked/skins/red/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v6/wicked/skins/red/skin.css -------------------------------------------------------------------------------- /chapter_07/v6/wicked/skins/yellow/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v6/wicked/skins/yellow/header.png -------------------------------------------------------------------------------- /chapter_07/v6/wicked/skins/yellow/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v6/wicked/skins/yellow/skin.css -------------------------------------------------------------------------------- /chapter_07/v6/wicked/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v6/wicked/style.css -------------------------------------------------------------------------------- /chapter_07/v6/wicked/widgets/author-data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/wordpress1/HEAD/chapter_07/v6/wicked/widgets/author-data.php --------------------------------------------------------------------------------