【例子介绍】WebStack:WordPress网址导航站主题
如果你一直在找一款WordPress网址导航站主题,那今天推荐国人开发的 WebStack 主题应该是一个不错的选择。支持多级分类、前端网址提交等功能。
【源码结构】
.
├── SkinH_EL.dll
├── WebStack-master
│ ├── 404.php
│ ├── LICENSE
│ ├── README.md
│ ├── archive.php
│ ├── comments.php
│ ├── css
│ │ ├── bootstrap.css
│ │ ├── font-awesome.min.css
│ │ └── nav.css
│ ├── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ └── fontawesome-webfont.woff2
│ ├── footer.php
│ ├── functions.php
│ ├── go.php
│ ├── header.php
│ ├── images
│ │ ├── add.png
│ │ ├── alipay_qrcode.png
│ │ ├── app-ico.png
│ │ ├── favicon.png
│ │ ├── logo-collapsed@2x.png
│ │ ├── logo@2x.png
│ │ ├── logo_dark@2x.png
│ │ └── wechat_qrcode.png
│ ├── inc
│ │ ├── ajax.php
│ │ ├── contribute-ajax.php
│ │ ├── fav-content.php
│ │ ├── frame
│ │ │ ├── assets
│ │ │ │ ├── css
│ │ │ │ │ ├── cs-framework-light.css
│ │ │ │ │ ├── cs-framework-rtl.css
│ │ │ │ │ ├── cs-framework-rtl.min.css
│ │ │ │ │ ├── cs-framework.css
│ │ │ │ │ ├── cs-framework.min.css
│ │ │ │ │ ├── font-awesome.css
│ │ │ │ │ └── font-awesome.min.css
│ │ │ │ ├── fonts
│ │ │ │ │ ├── FontAwesome.otf
│ │ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ │ └── fontawesome-webfont.woff2
│ │ │ │ ├── images
│ │ │ │ │ ├── checkerboard.png
│ │ │ │ │ ├── chosen-sprite.png
│ │ │ │ │ ├── chosen-sprite@2x.png
│ │ │ │ │ └── setting.png
│ │ │ │ ├── js
│ │ │ │ │ ├── cs-framework.js
│ │ │ │ │ ├── cs-framework.min.js
│ │ │ │ │ ├── cs-plugins.js
│ │ │ │ │ ├── cs-plugins.min.js
│ │ │ │ │ └── vendor
│ │ │ │ │ ├── chosen.jquery.js
│ │ │ │ │ ├── jquery.actual.js
│ │ │ │ │ ├── jquery.interdependencies.js
│ │ │ │ │ └── jquery.tooltip.js
│ │ │ │ └── scss
│ │ │ │ ├── cs-framework-light.scss
│ │ │ │ ├── cs-framework-rtl.scss
│ │ │ │ ├── cs-framework.scss
│ │ │ │ └── vendor
│ │ │ │ ├── _base.scss
│ │ │ │ ├── _chosen.scss
│ │ │ │ └── _mixins.scss
│ │ │ ├── classes
│ │ │ │ ├── abstract.class.php
│ │ │ │ ├── customize.class.php
│ │ │ │ ├── framework.class.php
│ │ │ │ ├── metabox.class.php
│ │ │ │ ├── options.class.php
│ │ │ │ ├── shortcode.class.php
│ │ │ │ └── taxonomy.class.php
│ │ │ ├── config
│ │ │ │ ├── framework.config.php
│ │ │ │ ├── metabox.config.php
│ │ │ │ └── taxonomy.config.php
│ │ │ ├── cs-framework-path.php
│ │ │ ├── cs-framework.php
│ │ │ ├── fields
│ │ │ │ ├── background
│ │ │ │ │ └── background.php
│ │ │ │ ├── backup
│ │ │ │ │ └── backup.php
│ │ │ │ ├── checkbox
│ │ │ │ │ └── checkbox.php
│ │ │ │ ├── color_picker
│ │ │ │ │ └── color_picker.php
│ │ │ │ ├── content
│ │ │ │ │ └── content.php
│ │ │ │ ├── fieldset
│ │ │ │ │ └── fieldset.php
│ │ │ │ ├── gallery
│ │ │ │ │ └── gallery.php
│ │ │ │ ├── group
│ │ │ │ │ └── group.php
│ │ │ │ ├── heading
│ │ │ │ │ └── heading.php
│ │ │ │ ├── icon
│ │ │ │ │ ├── 01-font-awesome.json
│ │ │ │ │ └── icon.php
│ │ │ │ ├── image
│ │ │ │ │ └── image.php
│ │ │ │ ├── image_select
│ │ │ │ │ └── image_select.php
│ │ │ │ ├── notice
│ │ │ │ │ └── notice.php
│ │ │ │ ├── number
│ │ │ │ │ └── number.php
│ │ │ │ ├── radio
│ │ │ │ │ └── radio.php
│ │ │ │ ├── repeater
│ │ │ │ │ └── repeater.php
│ │ │ │ ├── select
│ │ │ │ │ └── select.php
│ │ │ │ ├── sorter
│ │ │ │ │ └── sorter.php
│ │ │ │ ├── subheading
│ │ │ │ │ └── subheading.php
│ │ │ │ ├── switcher
│ │ │ │ │ └── switcher.php
│ │ │ │ ├── text
│ │ │ │ │ └── text.php
│ │ │ │ ├── textarea
│ │ │ │ │ └── textarea.php
│ │ │ │ ├── typography
│ │ │ │ │ ├── google-fonts.json
│ │ │ │ │ └── typography.php
│ │ │ │ ├── upload
│ │ │ │ │ └── upload.php
│ │ │ │ └── wysiwyg
│ │ │ │ └── wysiwyg.php
│ │ │ ├── functions
│ │ │ │ ├── actions.php
│ │ │ │ ├── customize.php
│ │ │ │ ├── deprecated.php
│ │ │ │ ├── enqueue.php
│ │ │ │ ├── fallback.php
│ │ │ │ ├── helpers.php
│ │ │ │ ├── sanitize.php
│ │ │ │ └── validate.php
│ │ │ └── index.php
│ │ ├── img-upload.php
│ │ ├── inc.php
│ │ ├── post-type.php
│ │ └── register.php
│ ├── index.php
│ ├── js
│ │ ├── TweenMax.min.js
│ │ ├── app.js
│ │ ├── bootstrap.min.js
│ │ ├── jquery-1.11.1.min.js
│ │ └── lazyload.min.js
│ ├── page.php
│ ├── screenshot.jpg
│ ├── search-tool.php
│ ├── search.php
│ ├── single-sites.php
│ ├── single.php
│ ├── style.css
│ ├── template-contribute.php
│ └── templates
│ ├── bulletin.php
│ ├── friendlink.php
│ ├── header-banner.php
│ ├── header-nav.php
│ └── site-card.php
└── WebStack:WordPress网址导航站主题_WebStack-master.zip
45 directories, 133 files
评论