Git Product home page Git Product logo

theme-includes's Introduction

Theme Includes

A way to organize theme files.

Directory Structure

theme/
└─inc/
  ├─static.php     # wp_enqueue_style() and wp_enqueue_script()
  ├─menus.php      # register_nav_menus()
  ├─hooks.php      # add_filter() and add_action()
  ├─helpers.php    # Helper functions and classes
  ├─widgets/       # Theme widgets
  │ ├─{widget-name}/
  │ │ ├─class-widget-{widget-name}.php # class Widget_{Widget_Name} extends WP_Widget { ... }
  │ │ ├─some-file.php
  │ │ └─some-dir/
  │ │   └─...
  │ └─...
  └─includes/      # All .php files are auto included (no need to require_once)
    ├─some-file.php
    └─...

File Descriptions

  • helpers.php, hooks.php, includes/*.php are included right away
  • static.php is included on wp_enqueue_scripts action
  • widgets/{hello-world}/class-widget-{Hello_World}.php are included on widgets_init action

Install

  1. Download the archive
  • Extract it to your theme root directory

  • Include the init.php file from your theme functions.php

     include_once get_template_directory() .'/inc/init.php';

theme-includes's People

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.