gitextract_rfvme1ix/ ├── .gitignore ├── 1 - PHP for WordPress/ │ ├── 1.02-phpforwp-completed/ │ │ ├── index.php │ │ └── style.css │ ├── 1.02-phpforwp-starter/ │ │ ├── index.php │ │ └── style.css │ ├── 1.04-phpforwp-completed/ │ │ ├── index.php │ │ └── style.css │ ├── 1.04-phpforwp-starter/ │ │ ├── index.php │ │ └── style.css │ ├── 1.08-phpforwp-completed/ │ │ ├── index.php │ │ └── style.css │ ├── 1.08-phpforwp-starter/ │ │ ├── index.php │ │ └── style.css │ ├── 1.10-phpforwp-completed/ │ │ ├── footer.php │ │ ├── header.php │ │ ├── index.php │ │ └── style.css │ ├── 1.10-phpforwp-starter/ │ │ ├── index.php │ │ └── style.css │ ├── 1.12-phpforwp-completed/ │ │ ├── footer.php │ │ ├── header.php │ │ ├── index.php │ │ └── style.css │ ├── 1.12-phpforwp-starter/ │ │ ├── footer.php │ │ ├── header.php │ │ ├── index.php │ │ └── style.css │ ├── 1.14-phpforwp-completed/ │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ └── style.css │ └── 1.14-phpforwp-starter/ │ ├── footer.php │ ├── functions.php │ ├── header.php │ ├── index.php │ └── style.css ├── 2 - Child and Starter Themes/ │ ├── 2.03-twentyseventeen-child/ │ │ ├── footer.php │ │ ├── functions.php │ │ └── style.css │ ├── 2.04-twentysixteen-child/ │ │ ├── footer.php │ │ ├── functions.php │ │ └── style.css │ ├── 2.06-demo-starter/ │ │ ├── .jscsrc │ │ ├── .jshintignore │ │ ├── 404.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── archive.php │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── inc/ │ │ │ ├── custom-header.php │ │ │ ├── customizer.php │ │ │ ├── extras.php │ │ │ ├── jetpack.php │ │ │ └── template-tags.php │ │ ├── index.php │ │ ├── js/ │ │ │ ├── customizer.js │ │ │ ├── navigation.js │ │ │ └── skip-link-focus-fix.js │ │ ├── languages/ │ │ │ ├── demo-starter.pot │ │ │ └── readme.txt │ │ ├── layouts/ │ │ │ ├── content-sidebar.css │ │ │ └── sidebar-content.css │ │ ├── page.php │ │ ├── readme.txt │ │ ├── rtl.css │ │ ├── search.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── content-none.php │ │ ├── content-page.php │ │ ├── content-search.php │ │ └── content.php │ └── 2.07-jointswp-starter/ │ ├── .gitignore │ ├── 404.php │ ├── README.md │ ├── archive-custom_type.php │ ├── archive.php │ ├── assets/ │ │ ├── css/ │ │ │ ├── login.css │ │ │ └── style.css │ │ ├── functions/ │ │ │ ├── admin.php │ │ │ ├── cleanup.php │ │ │ ├── comments.php │ │ │ ├── custom-post-type.php │ │ │ ├── disable-emoji.php │ │ │ ├── editor-styles.php │ │ │ ├── enqueue-scripts.php │ │ │ ├── login.php │ │ │ ├── menu.php │ │ │ ├── page-navi.php │ │ │ ├── related-posts.php │ │ │ ├── sidebar.php │ │ │ └── theme-support.php │ │ ├── js/ │ │ │ └── scripts.js │ │ └── translation/ │ │ ├── README │ │ ├── da_DK.po │ │ ├── de_DE.mo │ │ ├── de_DE.po │ │ ├── default.mo │ │ ├── default.po │ │ ├── es_ES.mo │ │ ├── es_ES.po │ │ ├── fr_FR.mo │ │ ├── fr_FR.po │ │ ├── he_IL.mo │ │ ├── he_IL.po │ │ ├── hr.mo │ │ ├── hr.po │ │ ├── it_IT.mo │ │ ├── it_IT.po │ │ ├── nl_NL.mo │ │ ├── nl_NL.po │ │ ├── pl_PL.mo │ │ ├── pl_PL.po │ │ ├── pt_BR.mo │ │ ├── pt_BR.po │ │ ├── pt_PT.mo │ │ ├── pt_PT.po │ │ ├── ru_RU.mo │ │ ├── ru_RU.po │ │ ├── sv_SE.mo │ │ ├── sv_SE.po │ │ ├── translation.php │ │ ├── zh_CN.mo │ │ └── zh_CN.po │ ├── comments.php │ ├── footer.php │ ├── functions.php │ ├── gulpfile.js │ ├── header.php │ ├── index.php │ ├── package.json │ ├── page.php │ ├── parts/ │ │ ├── content-byline.php │ │ ├── content-missing.php │ │ ├── content-offcanvas.php │ │ ├── loop-archive-grid.php │ │ ├── loop-archive.php │ │ ├── loop-page.php │ │ ├── loop-single.php │ │ ├── nav-offcanvas-topbar.php │ │ ├── nav-offcanvas.php │ │ ├── nav-title-bar.php │ │ └── nav-topbar.php │ ├── search.php │ ├── searchform.php │ ├── sidebar.php │ ├── single-custom_type.php │ ├── single.php │ ├── style.css │ ├── taxonomy-custom_cat.php │ ├── template-full-width.php │ └── vendor/ │ ├── foundation-sites/ │ │ ├── .bower.json │ │ ├── .bowerrc │ │ ├── .eslintrc │ │ ├── .github/ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── .sass-lint.yml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _vendor/ │ │ │ ├── normalize-scss/ │ │ │ │ └── sass/ │ │ │ │ ├── _normalize.scss │ │ │ │ └── normalize/ │ │ │ │ ├── _import-now.scss │ │ │ │ ├── _normalize-mixin.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── _vertical-rhythm.scss │ │ │ └── sassy-lists/ │ │ │ └── stylesheets/ │ │ │ ├── functions/ │ │ │ │ ├── _purge.scss │ │ │ │ ├── _remove.scss │ │ │ │ ├── _replace.scss │ │ │ │ └── _to-list.scss │ │ │ └── helpers/ │ │ │ ├── _missing-dependencies.scss │ │ │ └── _true.scss │ │ ├── assets/ │ │ │ ├── foundation-flex.scss │ │ │ ├── foundation-rtl.scss │ │ │ └── foundation.scss │ │ ├── bower.json │ │ ├── code-of-conduct.md │ │ ├── customizer/ │ │ │ ├── complete.json │ │ │ ├── config.yml │ │ │ ├── essential.json │ │ │ └── index.html │ │ ├── dist/ │ │ │ ├── css/ │ │ │ │ ├── foundation-flex.css │ │ │ │ ├── foundation-rtl.css │ │ │ │ └── foundation.css │ │ │ └── js/ │ │ │ ├── foundation.d.ts │ │ │ ├── foundation.js │ │ │ └── plugins/ │ │ │ ├── foundation.abide.js │ │ │ ├── foundation.accordion.js │ │ │ ├── foundation.accordionMenu.js │ │ │ ├── foundation.core.js │ │ │ ├── foundation.drilldown.js │ │ │ ├── foundation.dropdown.js │ │ │ ├── foundation.dropdownMenu.js │ │ │ ├── foundation.equalizer.js │ │ │ ├── foundation.interchange.js │ │ │ ├── foundation.magellan.js │ │ │ ├── foundation.offcanvas.js │ │ │ ├── foundation.orbit.js │ │ │ ├── foundation.responsiveMenu.js │ │ │ ├── foundation.responsiveToggle.js │ │ │ ├── foundation.reveal.js │ │ │ ├── foundation.slider.js │ │ │ ├── foundation.sticky.js │ │ │ ├── foundation.tabs.js │ │ │ ├── foundation.toggler.js │ │ │ ├── foundation.tooltip.js │ │ │ ├── foundation.util.box.js │ │ │ ├── foundation.util.keyboard.js │ │ │ ├── foundation.util.mediaQuery.js │ │ │ ├── foundation.util.motion.js │ │ │ ├── foundation.util.nest.js │ │ │ ├── foundation.util.timerAndImageLoader.js │ │ │ ├── foundation.util.touch.js │ │ │ ├── foundation.util.triggers.js │ │ │ └── foundation.zf.responsiveAccordionTabs.js │ │ ├── docslink.sh │ │ ├── js/ │ │ │ ├── foundation.abide.js │ │ │ ├── foundation.accordion.js │ │ │ ├── foundation.accordionMenu.js │ │ │ ├── foundation.core.js │ │ │ ├── foundation.drilldown.js │ │ │ ├── foundation.dropdown.js │ │ │ ├── foundation.dropdownMenu.js │ │ │ ├── foundation.equalizer.js │ │ │ ├── foundation.interchange.js │ │ │ ├── foundation.magellan.js │ │ │ ├── foundation.offcanvas.js │ │ │ ├── foundation.orbit.js │ │ │ ├── foundation.responsiveMenu.js │ │ │ ├── foundation.responsiveToggle.js │ │ │ ├── foundation.reveal.js │ │ │ ├── foundation.slider.js │ │ │ ├── foundation.sticky.js │ │ │ ├── foundation.tabs.js │ │ │ ├── foundation.toggler.js │ │ │ ├── foundation.tooltip.js │ │ │ ├── foundation.util.box.js │ │ │ ├── foundation.util.keyboard.js │ │ │ ├── foundation.util.mediaQuery.js │ │ │ ├── foundation.util.motion.js │ │ │ ├── foundation.util.nest.js │ │ │ ├── foundation.util.timerAndImageLoader.js │ │ │ ├── foundation.util.touch.js │ │ │ ├── foundation.util.triggers.js │ │ │ └── foundation.zf.responsiveAccordionTabs.js │ │ └── scss/ │ │ ├── _global.scss │ │ ├── components/ │ │ │ ├── _accordion-menu.scss │ │ │ ├── _accordion.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumbs.scss │ │ │ ├── _button-group.scss │ │ │ ├── _button.scss │ │ │ ├── _callout.scss │ │ │ ├── _card.scss │ │ │ ├── _close-button.scss │ │ │ ├── _drilldown.scss │ │ │ ├── _dropdown-menu.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _flex-video.scss │ │ │ ├── _flex.scss │ │ │ ├── _float.scss │ │ │ ├── _label.scss │ │ │ ├── _media-object.scss │ │ │ ├── _menu-icon.scss │ │ │ ├── _menu.scss │ │ │ ├── _off-canvas.scss │ │ │ ├── _orbit.scss │ │ │ ├── _pagination.scss │ │ │ ├── _progress-bar.scss │ │ │ ├── _responsive-embed.scss │ │ │ ├── _reveal.scss │ │ │ ├── _slider.scss │ │ │ ├── _sticky.scss │ │ │ ├── _switch.scss │ │ │ ├── _table.scss │ │ │ ├── _tabs.scss │ │ │ ├── _thumbnail.scss │ │ │ ├── _title-bar.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _top-bar.scss │ │ │ └── _visibility.scss │ │ ├── forms/ │ │ │ ├── _checkbox.scss │ │ │ ├── _error.scss │ │ │ ├── _fieldset.scss │ │ │ ├── _forms.scss │ │ │ ├── _help-text.scss │ │ │ ├── _input-group.scss │ │ │ ├── _label.scss │ │ │ ├── _meter.scss │ │ │ ├── _progress.scss │ │ │ ├── _range.scss │ │ │ ├── _select.scss │ │ │ └── _text.scss │ │ ├── foundation.scss │ │ ├── grid/ │ │ │ ├── _classes.scss │ │ │ ├── _column.scss │ │ │ ├── _flex-grid.scss │ │ │ ├── _grid.scss │ │ │ ├── _gutter.scss │ │ │ ├── _layout.scss │ │ │ ├── _position.scss │ │ │ ├── _row.scss │ │ │ └── _size.scss │ │ ├── settings/ │ │ │ └── _settings.scss │ │ ├── typography/ │ │ │ ├── _alignment.scss │ │ │ ├── _base.scss │ │ │ ├── _helpers.scss │ │ │ ├── _print.scss │ │ │ └── _typography.scss │ │ └── util/ │ │ ├── _breakpoint.scss │ │ ├── _color.scss │ │ ├── _flex.scss │ │ ├── _math.scss │ │ ├── _mixins.scss │ │ ├── _selector.scss │ │ ├── _unit.scss │ │ ├── _util.scss │ │ └── _value.scss │ ├── jquery/ │ │ ├── .bower.json │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist/ │ │ │ └── jquery.js │ │ ├── external/ │ │ │ └── sizzle/ │ │ │ ├── LICENSE.txt │ │ │ └── dist/ │ │ │ └── sizzle.js │ │ └── src/ │ │ ├── .jshintrc │ │ ├── ajax/ │ │ │ ├── jsonp.js │ │ │ ├── load.js │ │ │ ├── parseJSON.js │ │ │ ├── parseXML.js │ │ │ ├── script.js │ │ │ ├── var/ │ │ │ │ ├── location.js │ │ │ │ ├── nonce.js │ │ │ │ └── rquery.js │ │ │ └── xhr.js │ │ ├── ajax.js │ │ ├── attributes/ │ │ │ ├── attr.js │ │ │ ├── classes.js │ │ │ ├── prop.js │ │ │ ├── support.js │ │ │ └── val.js │ │ ├── attributes.js │ │ ├── callbacks.js │ │ ├── core/ │ │ │ ├── access.js │ │ │ ├── init.js │ │ │ ├── parseHTML.js │ │ │ ├── ready.js │ │ │ └── var/ │ │ │ └── rsingleTag.js │ │ ├── core.js │ │ ├── css/ │ │ │ ├── addGetHookIf.js │ │ │ ├── adjustCSS.js │ │ │ ├── curCSS.js │ │ │ ├── defaultDisplay.js │ │ │ ├── hiddenVisibleSelectors.js │ │ │ ├── showHide.js │ │ │ ├── support.js │ │ │ └── var/ │ │ │ ├── cssExpand.js │ │ │ ├── getStyles.js │ │ │ ├── isHidden.js │ │ │ ├── rmargin.js │ │ │ ├── rnumnonpx.js │ │ │ └── swap.js │ │ ├── css.js │ │ ├── data/ │ │ │ ├── Data.js │ │ │ └── var/ │ │ │ ├── acceptData.js │ │ │ ├── dataPriv.js │ │ │ └── dataUser.js │ │ ├── data.js │ │ ├── deferred.js │ │ ├── deprecated.js │ │ ├── dimensions.js │ │ ├── effects/ │ │ │ ├── Tween.js │ │ │ └── animatedSelector.js │ │ ├── effects.js │ │ ├── event/ │ │ │ ├── ajax.js │ │ │ ├── alias.js │ │ │ ├── focusin.js │ │ │ ├── support.js │ │ │ └── trigger.js │ │ ├── event.js │ │ ├── exports/ │ │ │ ├── amd.js │ │ │ └── global.js │ │ ├── intro.js │ │ ├── jquery.js │ │ ├── manipulation/ │ │ │ ├── _evalUrl.js │ │ │ ├── buildFragment.js │ │ │ ├── getAll.js │ │ │ ├── setGlobalEval.js │ │ │ ├── support.js │ │ │ ├── var/ │ │ │ │ ├── rcheckableType.js │ │ │ │ ├── rscriptType.js │ │ │ │ └── rtagName.js │ │ │ └── wrapMap.js │ │ ├── manipulation.js │ │ ├── offset.js │ │ ├── outro.js │ │ ├── queue/ │ │ │ └── delay.js │ │ ├── queue.js │ │ ├── selector-native.js │ │ ├── selector-sizzle.js │ │ ├── selector.js │ │ ├── serialize.js │ │ ├── traversing/ │ │ │ ├── findFilter.js │ │ │ └── var/ │ │ │ ├── dir.js │ │ │ ├── rneedsContext.js │ │ │ └── siblings.js │ │ ├── traversing.js │ │ ├── var/ │ │ │ ├── arr.js │ │ │ ├── class2type.js │ │ │ ├── concat.js │ │ │ ├── document.js │ │ │ ├── documentElement.js │ │ │ ├── hasOwn.js │ │ │ ├── indexOf.js │ │ │ ├── pnum.js │ │ │ ├── push.js │ │ │ ├── rcssNum.js │ │ │ ├── rnotwhite.js │ │ │ ├── slice.js │ │ │ ├── support.js │ │ │ └── toString.js │ │ └── wrap.js │ ├── motion-ui/ │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── composer.json │ │ ├── dist/ │ │ │ ├── motion-ui.css │ │ │ └── motion-ui.js │ │ ├── docs/ │ │ │ ├── animations.md │ │ │ ├── classes.md │ │ │ ├── configuration.md │ │ │ ├── installation.md │ │ │ ├── javascript.md │ │ │ ├── readme.md │ │ │ ├── transitions.md │ │ │ └── wow.md │ │ ├── gulpfile.js │ │ ├── lib/ │ │ │ └── handlebars.js │ │ ├── motion-ui.js │ │ ├── motion-ui.scss │ │ ├── package.json │ │ └── src/ │ │ ├── _classes.scss │ │ ├── _settings.scss │ │ ├── effects/ │ │ │ ├── _fade.scss │ │ │ ├── _hinge.scss │ │ │ ├── _shake.scss │ │ │ ├── _slide.scss │ │ │ ├── _spin.scss │ │ │ ├── _wiggle.scss │ │ │ └── _zoom.scss │ │ ├── motion-ui.scss │ │ ├── transitions/ │ │ │ ├── _fade.scss │ │ │ ├── _hinge.scss │ │ │ ├── _slide.scss │ │ │ ├── _spin.scss │ │ │ └── _zoom.scss │ │ └── util/ │ │ ├── _animation.scss │ │ ├── _args.scss │ │ ├── _keyframe.scss │ │ ├── _selector.scss │ │ ├── _series.scss │ │ ├── _transition.scss │ │ └── _unit.scss │ └── what-input/ │ ├── .bower.json │ ├── Gulpfile.js │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── dist/ │ │ ├── lte-IE8.js │ │ └── what-input.js │ ├── index.html │ ├── package.json │ └── src/ │ ├── polyfills/ │ │ └── ie8/ │ │ ├── EventListener.js │ │ └── indexOf.js │ └── what-input.js ├── 3 - Template Hierarchy/ │ ├── 3.02-setting-up-the-theme/ │ │ ├── functions.php │ │ ├── index.php │ │ └── style.css │ ├── 3.03-style.css/ │ │ ├── functions.php │ │ ├── index.php │ │ └── style.css │ ├── 3.04-functions/ │ │ ├── functions.php │ │ ├── index.php │ │ └── style.css │ ├── 3.05-index/ │ │ ├── functions.php │ │ ├── index.php │ │ └── style.css │ ├── 3.06-header/ │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── index.php │ │ └── style.css │ ├── 3.08-menu-and-header/ │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── index.php │ │ └── style.css │ ├── 3.09-adding-markup/ │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── index.php │ │ └── style.css │ ├── 3.10-sidebar/ │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── index.php │ │ ├── sidebar-splash.php │ │ ├── sidebar.php │ │ └── style.css │ ├── 3.11-widget-areas/ │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── index.php │ │ ├── sidebar-splash.php │ │ ├── sidebar.php │ │ └── style.css │ ├── 3.12-the-loop/ │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── index.php │ │ ├── sidebar-splash.php │ │ ├── sidebar.php │ │ └── style.css │ ├── 3.13-content-and-content-none/ │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── index.php │ │ ├── sidebar-splash.php │ │ ├── sidebar.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── content-none.php │ │ └── content.php │ ├── 3.14-singular/ │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── index.php │ │ ├── sidebar-splash.php │ │ ├── sidebar.php │ │ ├── singular.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── content-none.php │ │ └── content.php │ ├── 3.15-single/ │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── index.php │ │ ├── sidebar-splash.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── singular.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── content-none.php │ │ ├── content-page.php │ │ └── content.php │ ├── 3.17-comments/ │ │ ├── comments.php │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── index.php │ │ ├── sidebar-splash.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── singular.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── content-none.php │ │ ├── content-page.php │ │ └── content.php │ ├── 3.18-post-formats/ │ │ ├── comments.php │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── index.php │ │ ├── sidebar-splash.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── singular.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── content-gallery.php │ │ ├── content-none.php │ │ ├── content-page.php │ │ └── content.php │ ├── 3.19-home/ │ │ ├── comments.php │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── home.php │ │ ├── index.php │ │ ├── sidebar-splash.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── singular.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── content-gallery.php │ │ ├── content-none.php │ │ ├── content-page.php │ │ ├── content-posts-gallery.php │ │ ├── content-posts.php │ │ └── content.php │ ├── 3.20-archive/ │ │ ├── archive.php │ │ ├── comments.php │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── home.php │ │ ├── index.php │ │ ├── sidebar-splash.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── singular.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── content-gallery.php │ │ ├── content-none.php │ │ ├── content-page.php │ │ ├── content-posts-gallery.php │ │ ├── content-posts.php │ │ └── content.php │ ├── 3.21-author/ │ │ ├── archive.php │ │ ├── author.php │ │ ├── comments.php │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── home.php │ │ ├── index.php │ │ ├── sidebar-splash.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── singular.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── content-gallery.php │ │ ├── content-none.php │ │ ├── content-page.php │ │ ├── content-posts-gallery.php │ │ ├── content-posts.php │ │ └── content.php │ ├── 3.23-category/ │ │ ├── archive.php │ │ ├── author.php │ │ ├── category-9.php │ │ ├── category-excerpt.php │ │ ├── category.php │ │ ├── comments.php │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── home.php │ │ ├── index.php │ │ ├── sidebar-splash.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── singular.php │ │ ├── style.css │ │ ├── tag.php │ │ └── template-parts/ │ │ ├── content-gallery.php │ │ ├── content-none.php │ │ ├── content-page.php │ │ ├── content-posts-gallery.php │ │ ├── content-posts.php │ │ └── content.php │ ├── 3.24-tag/ │ │ ├── archive.php │ │ ├── author.php │ │ ├── category-9.php │ │ ├── category-excerpt.php │ │ ├── category.php │ │ ├── comments.php │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── home.php │ │ ├── index.php │ │ ├── sidebar-splash.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── singular.php │ │ ├── style.css │ │ ├── tag-50.php │ │ ├── tag-wordpress.php │ │ ├── tag.php │ │ └── template-parts/ │ │ ├── content-gallery.php │ │ ├── content-none.php │ │ ├── content-page.php │ │ ├── content-posts-gallery.php │ │ ├── content-posts.php │ │ └── content.php │ ├── 3.25-date/ │ │ ├── archive.php │ │ ├── author.php │ │ ├── category-9.php │ │ ├── category-excerpt.php │ │ ├── category.php │ │ ├── comments.php │ │ ├── date.php │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── home.php │ │ ├── index.php │ │ ├── sidebar-splash.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── singular.php │ │ ├── style.css │ │ ├── tag-50.php │ │ ├── tag-wordpress.php │ │ ├── tag.php │ │ └── template-parts/ │ │ ├── content-gallery.php │ │ ├── content-none.php │ │ ├── content-page.php │ │ ├── content-posts-gallery.php │ │ ├── content-posts.php │ │ └── content.php │ ├── 3.26-attachment/ │ │ ├── archive.php │ │ ├── attachment.php │ │ ├── author.php │ │ ├── category-9.php │ │ ├── category-excerpt.php │ │ ├── category.php │ │ ├── comments.php │ │ ├── date.php │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── home.php │ │ ├── index.php │ │ ├── sidebar-splash.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── singular.php │ │ ├── style.css │ │ ├── tag-50.php │ │ ├── tag-wordpress.php │ │ ├── tag.php │ │ └── template-parts/ │ │ ├── content-gallery.php │ │ ├── content-none.php │ │ ├── content-page.php │ │ ├── content-posts-gallery.php │ │ ├── content-posts.php │ │ └── content.php │ ├── 3.27-mimetype/ │ │ ├── archive.php │ │ ├── attachment.php │ │ ├── author.php │ │ ├── category-9.php │ │ ├── category-excerpt.php │ │ ├── category.php │ │ ├── comments.php │ │ ├── date.php │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── home.php │ │ ├── image.php │ │ ├── index.php │ │ ├── sidebar-splash.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── singular.php │ │ ├── style.css │ │ ├── tag-50.php │ │ ├── tag-wordpress.php │ │ ├── tag.php │ │ ├── template-parts/ │ │ │ ├── content-gallery.php │ │ │ ├── content-none.php │ │ │ ├── content-page.php │ │ │ ├── content-posts-gallery.php │ │ │ ├── content-posts.php │ │ │ └── content.php │ │ └── video.php │ ├── 3.28-page/ │ │ ├── archive.php │ │ ├── attachment.php │ │ ├── author.php │ │ ├── category-9.php │ │ ├── category-excerpt.php │ │ ├── category.php │ │ ├── comments.php │ │ ├── date.php │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── home.php │ │ ├── image.php │ │ ├── index.php │ │ ├── page-1096.php │ │ ├── page-child-page-05.php │ │ ├── page.php │ │ ├── sidebar-page.php │ │ ├── sidebar-splash.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── singular.php │ │ ├── style.css │ │ ├── tag-50.php │ │ ├── tag-wordpress.php │ │ ├── tag.php │ │ ├── template-parts/ │ │ │ ├── content-gallery.php │ │ │ ├── content-none.php │ │ │ ├── content-page.php │ │ │ ├── content-posts-gallery.php │ │ │ ├── content-posts.php │ │ │ └── content.php │ │ └── video.php │ ├── 3.29-front-page/ │ │ ├── archive.php │ │ ├── attachment.php │ │ ├── author.php │ │ ├── category-9.php │ │ ├── category-excerpt.php │ │ ├── category.php │ │ ├── comments.php │ │ ├── date.php │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── front-page.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── home.php │ │ ├── image.php │ │ ├── index.php │ │ ├── page-1096.php │ │ ├── page-child-page-05.php │ │ ├── page.php │ │ ├── sidebar-front-page.php │ │ ├── sidebar-page.php │ │ ├── sidebar-splash.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── singular.php │ │ ├── style.css │ │ ├── tag-50.php │ │ ├── tag-wordpress.php │ │ ├── tag.php │ │ ├── template-parts/ │ │ │ ├── content-gallery.php │ │ │ ├── content-none.php │ │ │ ├── content-page.php │ │ │ ├── content-posts-gallery.php │ │ │ ├── content-posts.php │ │ │ └── content.php │ │ └── video.php │ ├── 3.30-custom/ │ │ ├── archive.php │ │ ├── attachment.php │ │ ├── author.php │ │ ├── category-9.php │ │ ├── category-excerpt.php │ │ ├── category.php │ │ ├── comments.php │ │ ├── date.php │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── front-page.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── home.php │ │ ├── image.php │ │ ├── index.php │ │ ├── page-1096.php │ │ ├── page-child-page-05.php │ │ ├── page.php │ │ ├── sidebar-front-page.php │ │ ├── sidebar-page.php │ │ ├── sidebar-splash.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── singular.php │ │ ├── style.css │ │ ├── tag-50.php │ │ ├── tag-wordpress.php │ │ ├── tag.php │ │ ├── template-full-width.php │ │ ├── template-parts/ │ │ │ ├── content-gallery.php │ │ │ ├── content-none.php │ │ │ ├── content-page.php │ │ │ ├── content-posts-gallery.php │ │ │ ├── content-posts.php │ │ │ └── content.php │ │ ├── template-splash.php │ │ └── video.php │ ├── 3.31-404/ │ │ ├── 404.php │ │ ├── archive.php │ │ ├── attachment.php │ │ ├── author.php │ │ ├── category-9.php │ │ ├── category-excerpt.php │ │ ├── category.php │ │ ├── comments.php │ │ ├── date.php │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── front-page.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── home.php │ │ ├── image.php │ │ ├── index.php │ │ ├── page-1096.php │ │ ├── page-child-page-05.php │ │ ├── page.php │ │ ├── sidebar-front-page.php │ │ ├── sidebar-page.php │ │ ├── sidebar-splash.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── singular.php │ │ ├── style.css │ │ ├── tag-50.php │ │ ├── tag-wordpress.php │ │ ├── tag.php │ │ ├── template-full-width.php │ │ ├── template-parts/ │ │ │ ├── content-gallery.php │ │ │ ├── content-none.php │ │ │ ├── content-page.php │ │ │ ├── content-posts-gallery.php │ │ │ ├── content-posts.php │ │ │ └── content.php │ │ ├── template-splash.php │ │ └── video.php │ ├── 3.32-search/ │ │ ├── 404.php │ │ ├── archive.php │ │ ├── attachment.php │ │ ├── author.php │ │ ├── category-9.php │ │ ├── category-excerpt.php │ │ ├── category.php │ │ ├── comments.php │ │ ├── date.php │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── front-page.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── home.php │ │ ├── image.php │ │ ├── index.php │ │ ├── page-1096.php │ │ ├── page-child-page-05.php │ │ ├── page.php │ │ ├── search.php │ │ ├── sidebar-front-page.php │ │ ├── sidebar-page.php │ │ ├── sidebar-splash.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── singular.php │ │ ├── style.css │ │ ├── tag-50.php │ │ ├── tag-wordpress.php │ │ ├── tag.php │ │ ├── template-full-width.php │ │ ├── template-parts/ │ │ │ ├── content-gallery.php │ │ │ ├── content-none.php │ │ │ ├── content-page.php │ │ │ ├── content-posts-gallery.php │ │ │ ├── content-posts.php │ │ │ ├── content-search.php │ │ │ └── content.php │ │ ├── template-splash.php │ │ └── video.php │ ├── 3.33-archive-posttype/ │ │ ├── 404.php │ │ ├── archive-portfolio.php │ │ ├── archive.php │ │ ├── attachment.php │ │ ├── author.php │ │ ├── category-9.php │ │ ├── category-excerpt.php │ │ ├── category.php │ │ ├── comments.php │ │ ├── date.php │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── front-page.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── home.php │ │ ├── image.php │ │ ├── index.php │ │ ├── page-1096.php │ │ ├── page-child-page-05.php │ │ ├── page.php │ │ ├── search.php │ │ ├── sidebar-front-page.php │ │ ├── sidebar-page.php │ │ ├── sidebar-splash.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── singular.php │ │ ├── style.css │ │ ├── tag-50.php │ │ ├── tag-wordpress.php │ │ ├── tag.php │ │ ├── template-full-width.php │ │ ├── template-parts/ │ │ │ ├── content-gallery.php │ │ │ ├── content-none.php │ │ │ ├── content-page.php │ │ │ ├── content-portfolio.php │ │ │ ├── content-posts-gallery.php │ │ │ ├── content-posts.php │ │ │ ├── content-search.php │ │ │ └── content.php │ │ ├── template-splash.php │ │ └── video.php │ ├── 3.34-single-posttype/ │ │ ├── 404.php │ │ ├── archive-portfolio.php │ │ ├── archive.php │ │ ├── attachment.php │ │ ├── author.php │ │ ├── category-9.php │ │ ├── category-excerpt.php │ │ ├── category.php │ │ ├── comments.php │ │ ├── date.php │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── front-page.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── home.php │ │ ├── image.php │ │ ├── index.php │ │ ├── page-1096.php │ │ ├── page-child-page-05.php │ │ ├── page.php │ │ ├── search.php │ │ ├── sidebar-front-page.php │ │ ├── sidebar-page.php │ │ ├── sidebar-splash.php │ │ ├── sidebar.php │ │ ├── single-portfolio.php │ │ ├── single.php │ │ ├── singular.php │ │ ├── style.css │ │ ├── tag-50.php │ │ ├── tag-wordpress.php │ │ ├── tag.php │ │ ├── template-full-width.php │ │ ├── template-parts/ │ │ │ ├── content-gallery.php │ │ │ ├── content-none.php │ │ │ ├── content-page.php │ │ │ ├── content-portfolio.php │ │ │ ├── content-posts-gallery.php │ │ │ ├── content-posts.php │ │ │ ├── content-search.php │ │ │ └── content.php │ │ ├── template-splash.php │ │ └── video.php │ ├── 3.35-single-posttype-slug/ │ │ ├── 404.php │ │ ├── archive-portfolio.php │ │ ├── archive.php │ │ ├── attachment.php │ │ ├── author.php │ │ ├── category-9.php │ │ ├── category-excerpt.php │ │ ├── category.php │ │ ├── comments.php │ │ ├── date.php │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── front-page.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── home.php │ │ ├── image.php │ │ ├── index.php │ │ ├── page-1096.php │ │ ├── page-child-page-05.php │ │ ├── page.php │ │ ├── search.php │ │ ├── sidebar-front-page.php │ │ ├── sidebar-page.php │ │ ├── sidebar-splash.php │ │ ├── sidebar.php │ │ ├── single-portfolio-php-for-wordpress.php │ │ ├── single-portfolio.php │ │ ├── single.php │ │ ├── singular.php │ │ ├── style.css │ │ ├── tag-50.php │ │ ├── tag-wordpress.php │ │ ├── tag.php │ │ ├── template-full-width.php │ │ ├── template-parts/ │ │ │ ├── content-gallery.php │ │ │ ├── content-none.php │ │ │ ├── content-page.php │ │ │ ├── content-portfolio.php │ │ │ ├── content-posts-gallery.php │ │ │ ├── content-posts.php │ │ │ ├── content-search.php │ │ │ └── content.php │ │ ├── template-splash.php │ │ └── video.php │ ├── 3.36-taxonomy/ │ │ ├── 404.php │ │ ├── archive-portfolio.php │ │ ├── archive.php │ │ ├── attachment.php │ │ ├── author.php │ │ ├── category-9.php │ │ ├── category-excerpt.php │ │ ├── category.php │ │ ├── comments.php │ │ ├── date.php │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── front-page.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── home.php │ │ ├── image.php │ │ ├── index.php │ │ ├── page-1096.php │ │ ├── page-child-page-05.php │ │ ├── page.php │ │ ├── search.php │ │ ├── sidebar-front-page.php │ │ ├── sidebar-page.php │ │ ├── sidebar-splash.php │ │ ├── sidebar.php │ │ ├── single-portfolio-php-for-wordpress.php │ │ ├── single-portfolio.php │ │ ├── single.php │ │ ├── singular.php │ │ ├── style.css │ │ ├── tag-50.php │ │ ├── tag-wordpress.php │ │ ├── tag.php │ │ ├── taxonomy.php │ │ ├── template-full-width.php │ │ ├── template-parts/ │ │ │ ├── content-gallery.php │ │ │ ├── content-none.php │ │ │ ├── content-page.php │ │ │ ├── content-portfolio.php │ │ │ ├── content-posts-gallery.php │ │ │ ├── content-posts.php │ │ │ ├── content-search.php │ │ │ └── content.php │ │ ├── template-splash.php │ │ └── video.php │ ├── 3.37-taxonomy-taxonomy-taxonomy-slug/ │ │ ├── 404.php │ │ ├── archive-portfolio.php │ │ ├── archive.php │ │ ├── attachment.php │ │ ├── author.php │ │ ├── category-9.php │ │ ├── category-excerpt.php │ │ ├── category.php │ │ ├── comments.php │ │ ├── date.php │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── front-page.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── home.php │ │ ├── image.php │ │ ├── index.php │ │ ├── page-1096.php │ │ ├── page-child-page-05.php │ │ ├── page.php │ │ ├── search.php │ │ ├── sidebar-front-page.php │ │ ├── sidebar-page.php │ │ ├── sidebar-splash.php │ │ ├── sidebar.php │ │ ├── single-portfolio-php-for-wordpress.php │ │ ├── single-portfolio.php │ │ ├── single.php │ │ ├── singular.php │ │ ├── style.css │ │ ├── tag-50.php │ │ ├── tag-wordpress.php │ │ ├── tag.php │ │ ├── taxonomy-skills-php.php │ │ ├── taxonomy-skills.php │ │ ├── taxonomy.php │ │ ├── template-full-width.php │ │ ├── template-parts/ │ │ │ ├── content-gallery.php │ │ │ ├── content-none.php │ │ │ ├── content-page.php │ │ │ ├── content-portfolio.php │ │ │ ├── content-posts-gallery.php │ │ │ ├── content-posts.php │ │ │ ├── content-search.php │ │ │ └── content.php │ │ ├── template-splash.php │ │ └── video.php │ ├── 3.38-additional-css/ │ │ ├── 404.php │ │ ├── archive-portfolio.php │ │ ├── archive.php │ │ ├── assets/ │ │ │ └── css/ │ │ │ └── custom.css │ │ ├── attachment.php │ │ ├── author.php │ │ ├── category-9.php │ │ ├── category-excerpt.php │ │ ├── category.php │ │ ├── comments.php │ │ ├── date.php │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── front-page.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── home.php │ │ ├── image.php │ │ ├── index.php │ │ ├── page-1096.php │ │ ├── page-child-page-05.php │ │ ├── page.php │ │ ├── search.php │ │ ├── sidebar-front-page.php │ │ ├── sidebar-page.php │ │ ├── sidebar-splash.php │ │ ├── sidebar.php │ │ ├── single-portfolio-php-for-wordpress.php │ │ ├── single-portfolio.php │ │ ├── single.php │ │ ├── singular.php │ │ ├── style.css │ │ ├── tag-50.php │ │ ├── tag-wordpress.php │ │ ├── tag.php │ │ ├── taxonomy-skills-php.php │ │ ├── taxonomy-skills.php │ │ ├── taxonomy.php │ │ ├── template-full-width.php │ │ ├── template-parts/ │ │ │ ├── content-gallery.php │ │ │ ├── content-none.php │ │ │ ├── content-page.php │ │ │ ├── content-portfolio.php │ │ │ ├── content-posts-gallery.php │ │ │ ├── content-posts.php │ │ │ ├── content-search.php │ │ │ └── content.php │ │ ├── template-splash.php │ │ └── video.php │ └── 3.39-adding-javascript-to-a-theme/ │ ├── 404.php │ ├── archive-portfolio.php │ ├── archive.php │ ├── assets/ │ │ ├── css/ │ │ │ └── custom.css │ │ └── js/ │ │ └── theme.js │ ├── attachment.php │ ├── author.php │ ├── category-9.php │ ├── category-excerpt.php │ ├── category.php │ ├── comments.php │ ├── date.php │ ├── footer-splash.php │ ├── footer.php │ ├── front-page.php │ ├── functions.php │ ├── header-splash.php │ ├── header.php │ ├── home.php │ ├── image.php │ ├── index.php │ ├── page-1096.php │ ├── page-child-page-05.php │ ├── page.php │ ├── search.php │ ├── sidebar-front-page.php │ ├── sidebar-page.php │ ├── sidebar-splash.php │ ├── sidebar.php │ ├── single-portfolio-php-for-wordpress.php │ ├── single-portfolio.php │ ├── single.php │ ├── singular.php │ ├── style.css │ ├── tag-50.php │ ├── tag-wordpress.php │ ├── tag.php │ ├── taxonomy-skills-php.php │ ├── taxonomy-skills.php │ ├── taxonomy.php │ ├── template-full-width.php │ ├── template-parts/ │ │ ├── content-gallery.php │ │ ├── content-none.php │ │ ├── content-page.php │ │ ├── content-portfolio.php │ │ ├── content-posts-gallery.php │ │ ├── content-posts.php │ │ ├── content-search.php │ │ └── content.php │ ├── template-splash.php │ └── video.php ├── 4 - Template Tags/ │ ├── 4.01-intro-wptags/ │ │ ├── 404.php │ │ ├── archive-portfolio.php │ │ ├── archive.php │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── attachment.php │ │ ├── author.php │ │ ├── category-9.php │ │ ├── category-excerpt.php │ │ ├── category.php │ │ ├── comments.php │ │ ├── date.php │ │ ├── footer-splash.php │ │ ├── footer.php │ │ ├── front-page.php │ │ ├── functions.php │ │ ├── header-splash.php │ │ ├── header.php │ │ ├── home.php │ │ ├── image.php │ │ ├── index.php │ │ ├── page-1096.php │ │ ├── page-child-page-05.php │ │ ├── page.php │ │ ├── search.php │ │ ├── sidebar-front-page.php │ │ ├── sidebar-page.php │ │ ├── sidebar-splash.php │ │ ├── sidebar.php │ │ ├── single-portfolio-php-for-wordpress.php │ │ ├── single-portfolio.php │ │ ├── single.php │ │ ├── singular.php │ │ ├── style.css │ │ ├── tag-50.php │ │ ├── tag-wordpress.php │ │ ├── tag.php │ │ ├── taxonomy-skills-php.php │ │ ├── taxonomy-skills.php │ │ ├── taxonomy.php │ │ ├── template-full-width.php │ │ ├── template-parts/ │ │ │ ├── content-gallery.php │ │ │ ├── content-none.php │ │ │ ├── content-page.php │ │ │ ├── content-portfolio.php │ │ │ ├── content-posts-gallery.php │ │ │ ├── content-posts.php │ │ │ ├── content-search.php │ │ │ └── content.php │ │ ├── template-splash.php │ │ └── video.php │ ├── 4.04-general-login-wptags/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── sidebar.php │ │ └── style.css │ ├── 4.06-general-archive-wptags/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── category.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── sidebar.php │ │ └── style.css │ ├── 4.07-general-calendar-wptags/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── sidebar.php │ │ └── style.css │ ├── 4.10-practice-general-wptags/ │ │ ├── archive.php │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── date.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── sidebar.php │ │ └── style.css │ ├── 4.11-navigation-wptags/ │ │ ├── archive.php │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── date.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── sidebar.php │ │ └── style.css │ ├── 4.15-practice-navigation-wptags/ │ │ ├── archive.php │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── date.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── sidebar.php │ │ └── style.css │ ├── 4.17-post-class-wptags/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── sidebar.php │ │ ├── single.php │ │ └── style.css │ ├── 4.18-post-common-wptags/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ └── byline.php │ ├── 4.20-post-date-wptags/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ └── byline.php │ ├── 4.21-post-link-wptags/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ └── byline.php │ ├── 4.22-post-attachment-wptags/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ └── byline.php │ ├── 4.23-post-misc-wptags/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ └── byline.php │ ├── 4.26-practice-post-wptags/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ └── byline.php │ ├── 4.27-post-thumbnails-wptags/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ └── byline.php │ ├── 4.29-practice-thumbnails-wptags/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ └── byline.php │ ├── 4.30-links-wptags/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── search.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ └── byline.php │ ├── 4.32-practice-links-wptags/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── search.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ └── byline.php │ ├── 4.33-comment-tags-wptags/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── comment.php │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── search.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ └── byline.php │ ├── 4.34-common-comment-tags-wptags/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── comment.php │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── search.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ └── byline.php │ ├── 4.36-practice-comment-tags-wptags/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── comment.php │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── search.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ └── byline.php │ ├── 4.37-author-tags-wptags/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── author.php │ │ ├── comment.php │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── search.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ └── byline.php │ ├── 4.39-practice-author-tags-completed-wptags/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── author.php │ │ ├── comment.php │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── search.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── author-bio.php │ │ └── byline.php │ ├── 4.42-sanitization-tags-wptags/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── author.php │ │ ├── comment.php │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── search.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── author-bio.php │ │ └── byline.php │ ├── 4.43-escaping-tags-wptags/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── author.php │ │ ├── comment.php │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── search.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── author-bio.php │ │ └── byline.php │ ├── 4.44-localization-tags-wptags/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── author.php │ │ ├── comment.php │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── search.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── author-bio.php │ │ └── byline.php │ └── wptags-starter/ │ ├── assets/ │ │ ├── css/ │ │ │ └── custom.css │ │ └── js/ │ │ ├── jquery.theme.js │ │ └── theme.js │ ├── footer.php │ ├── functions.php │ ├── header.php │ ├── index.php │ ├── sidebar.php │ └── style.css ├── 5 - Action and Filter Hooks/ │ ├── 5.03-action-hooks-demo/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── author.php │ │ ├── comment.php │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── search.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── author-bio.php │ │ └── byline.php │ ├── 5.05-action-hooks-wpfilter/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── author-bio.php │ │ ├── before-footer.php │ │ └── byline.php │ ├── 5.06-action-hooks-r-debug/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── lib/ │ │ │ └── r-debug.php │ │ ├── page.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── author-bio.php │ │ ├── before-footer.php │ │ └── byline.php │ ├── 5.07-action-hooks-debug-plugin/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── lib/ │ │ │ └── r-debug.php │ │ ├── page.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── author-bio.php │ │ ├── before-footer.php │ │ └── byline.php │ ├── 5.08-action-hooks-simply-show-hooks/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── lib/ │ │ │ └── r-debug.php │ │ ├── page.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── author-bio.php │ │ ├── before-footer.php │ │ └── byline.php │ ├── 5.10-action-hooks-do_action-demo/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── author-bio.php │ │ ├── before-footer.php │ │ └── byline.php │ ├── 5.11-action-hooks-wp_enqueue_scripts/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── author-bio.php │ │ └── byline.php │ ├── 5.12-action-hooks-widgets_init/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── author-bio.php │ │ └── byline.php │ ├── 5.13-action-hooks-loop_end/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── author-bio.php │ │ ├── byline.php │ │ └── post-end-marketing.php │ ├── 5.14-action-hooks-template_redirect/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── author-bio.php │ │ └── byline.php │ ├── 5.15-action-hooks-save_post/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── author-bio.php │ │ └── byline.php │ ├── 5.17-practice-action-hooks-completed/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ ├── admin.css │ │ │ │ ├── custom.css │ │ │ │ └── visual-editor.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── author-bio.php │ │ ├── byline.php │ │ ├── comment-cta.php │ │ └── contact-form-support-message.php │ ├── 5.21-filter-hooks-wpfilter/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── author-bio.php │ │ ├── before-footer.php │ │ └── byline.php │ ├── 5.26-filter-hooks-apply_filters/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ ├── admin.css │ │ │ │ ├── custom.css │ │ │ │ └── visual-editor.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── author-bio.php │ │ └── byline.php │ ├── 5.27-filter-hooks-the_title/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ ├── admin.css │ │ │ │ ├── custom.css │ │ │ │ └── visual-editor.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── author-bio.php │ │ └── byline.php │ ├── 5.28-filter-hooks-the_content/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ ├── admin.css │ │ │ │ ├── custom.css │ │ │ │ └── visual-editor.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── author-bio.php │ │ ├── byline.php │ │ └── post-ad.php │ ├── 5.29-filter-hooks-excerpt_more/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ ├── admin.css │ │ │ │ ├── custom.css │ │ │ │ └── visual-editor.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── author-bio.php │ │ └── byline.php │ ├── 5.30-filter-hooks-body_class/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ ├── admin.css │ │ │ │ ├── custom.css │ │ │ │ └── visual-editor.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── author-bio.php │ │ └── byline.php │ ├── 5.31-filter-hooks-manage_posts_columns/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ ├── admin.css │ │ │ │ ├── custom.css │ │ │ │ └── visual-editor.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── author-bio.php │ │ └── byline.php │ └── 5.33-practice-filter-hooks-completed/ │ ├── assets/ │ │ ├── css/ │ │ │ ├── admin.css │ │ │ ├── custom.css │ │ │ └── visual-editor.css │ │ └── js/ │ │ ├── jquery.theme.js │ │ └── theme.js │ ├── comments.php │ ├── footer.php │ ├── functions.php │ ├── header.php │ ├── index.php │ ├── page.php │ ├── sidebar.php │ ├── single.php │ ├── style.css │ └── template-parts/ │ ├── author-bio.php │ └── byline.php ├── 6 - Plugin Development/ │ ├── 6.00-plugin-theme/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ ├── admin.css │ │ │ │ ├── custom.css │ │ │ │ └── visual-editor.css │ │ │ └── js/ │ │ │ ├── jquery.theme.js │ │ │ └── theme.js │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── index.php │ │ ├── page.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts/ │ │ ├── author-bio.php │ │ └── byline.php │ ├── 6.02.01-admin-footer-credits-simple.php │ ├── 6.02.02-admin-footer-credits-folder/ │ │ ├── 6.02.02-admin-footer-credits.php │ │ └── includes/ │ │ └── admin-footer-text.php │ ├── 6.03-plugin-information-comment/ │ │ └── 6.03-plugin-information-comment.php │ ├── 6.04-plugin-settings-page/ │ │ └── 6.04-plugin-settings-page.php │ ├── 6.05-plugin-settings-subpage/ │ │ └── 6.05-plugin-settings-subpage.php │ ├── 6.06-plugin-settings-link/ │ │ └── 6.06-plugin-settings-link.php │ ├── 6.07-plugin-file-paths/ │ │ ├── 6.07-plugin-file-paths.php │ │ └── includes/ │ │ └── include-test.php │ ├── 6.08-enueuing-css/ │ │ ├── 6.08-enueuing-css.php │ │ ├── admin/ │ │ │ └── css/ │ │ │ └── wpplugin-admin-style.css │ │ ├── frontend/ │ │ │ └── css/ │ │ │ └── wpplugin-frontend-style.css │ │ └── includes/ │ │ ├── wpplugin-menus.php │ │ └── wpplugin-styles.php │ ├── 6.09-enueuing-js/ │ │ ├── 6.09-enueuing-js.php │ │ ├── admin/ │ │ │ ├── css/ │ │ │ │ └── wpplugin-admin-style.css │ │ │ └── js/ │ │ │ └── wpplugin-admin.js │ │ ├── frontend/ │ │ │ ├── css/ │ │ │ │ └── wpplugin-frontend-style.css │ │ │ └── js/ │ │ │ └── wpplugin-frontend.js │ │ └── includes/ │ │ ├── wpplugin-menus.php │ │ ├── wpplugin-scripts.php │ │ └── wpplugin-styles.php │ ├── 6.10-conditional-enqueuing/ │ │ ├── 6.10-conditional-enueuing.php │ │ ├── admin/ │ │ │ ├── css/ │ │ │ │ └── wpplugin-admin-style.css │ │ │ └── js/ │ │ │ └── wpplugin-admin.js │ │ ├── frontend/ │ │ │ ├── css/ │ │ │ │ └── wpplugin-frontend-style.css │ │ │ └── js/ │ │ │ └── wpplugin-frontend.js │ │ └── includes/ │ │ ├── wpplugin-menus.php │ │ ├── wpplugin-scripts.php │ │ └── wpplugin-styles.php │ ├── 6.12-practice-complete/ │ │ ├── 6.12-practice-complete.php │ │ ├── admin/ │ │ │ ├── css/ │ │ │ │ └── wpplugin-admin-style.css │ │ │ └── js/ │ │ │ └── wpplugin-admin.js │ │ └── includes/ │ │ ├── wpplugin-menus.php │ │ ├── wpplugin-scripts.php │ │ └── wpplugin-styles.php │ ├── 6.13-options/ │ │ ├── 6.13-options.php │ │ ├── includes/ │ │ │ ├── wpplugin-menus.php │ │ │ └── wpplugin-options.php │ │ └── templates/ │ │ └── admin/ │ │ └── settings-page.php │ ├── 6.14-options-array/ │ │ ├── 6.14-options-array.php │ │ ├── includes/ │ │ │ ├── wpplugin-menus.php │ │ │ └── wpplugin-options.php │ │ └── templates/ │ │ └── admin/ │ │ └── settings-page.php │ ├── 6.16-practice-complete/ │ │ ├── 6.16-practice-complete.php │ │ ├── includes/ │ │ │ ├── wpplugin-menus.php │ │ │ └── wpplugin-options.php │ │ └── templates/ │ │ └── admin/ │ │ └── settings-page.php │ ├── 6.17-settings-api/ │ │ ├── 6.17-settings-api.php │ │ ├── includes/ │ │ │ ├── wpplugin-menus.php │ │ │ └── wpplugin-settings-fields.php │ │ └── templates/ │ │ └── admin/ │ │ └── settings-page.php │ ├── 6.18-settings-sections/ │ │ ├── 6.18-settings-sections.php │ │ ├── includes/ │ │ │ ├── wpplugin-menus.php │ │ │ └── wpplugin-settings-fields.php │ │ └── templates/ │ │ └── admin/ │ │ └── settings-page.php │ ├── 6.19-settings-field/ │ │ ├── 6.19-settings-field.php │ │ ├── includes/ │ │ │ ├── wpplugin-menus.php │ │ │ └── wpplugin-settings-fields.php │ │ └── templates/ │ │ └── admin/ │ │ └── settings-page.php │ ├── 6.20-more-settings-fields/ │ │ ├── 6.20-more-settings-fields.php │ │ ├── includes/ │ │ │ ├── wpplugin-menus.php │ │ │ └── wpplugin-settings-fields.php │ │ └── templates/ │ │ └── admin/ │ │ └── settings-page.php │ └── 6.21-default-settings/ │ ├── 6.21-default-settings.php │ ├── includes/ │ │ ├── wpplugin-menus.php │ │ └── wpplugin-settings-fields.php │ └── templates/ │ └── admin/ │ └── settings-page.php └── README.md