Giter Site home page Giter Site logo

caleb531 / awesome-cpt Goto Github PK

View Code? Open in Web Editor NEW
2.0 2.0 0.0 71 KB

Code WordPress custom post types, taxonomies, and meta boxes with ease and power

License: GNU General Public License v2.0

PHP 100.00%
custom-post-types meta-boxes php taxonomies wordpress wordpress-plugin

awesome-cpt's People

Contributors

caleb531 avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

awesome-cpt's Issues

Adding category fails

I've used awesome-cpt on a few projects (thanks!).

On the current project I wanted my CPT 'event' to be able to use the in-built categories (i.e. not a custom taxonomy), and so I added the 'taxonomies' argument to my CPT declaration:

$event = new Awesome_Post_Type( array(
  'id'   => 'event',
  'name' => array(
      'singular' => 'event',
      'plural'   => 'events'
  ),
  'args' => array(
      'menu_icon'     => 'dashicons-calendar-alt',
      'menu_position' => 20,
      'supports'    => array( 'title', 'editor', 'thumbnail', 'page-attributes' ),
      'has_archive' => 'events',
      'taxonomies'  => array('category','post_tag')
  )
) );

(I threw tags in for good measure.)

Categories (or tags) failed to show up on the edit event pages.

So I resorted to directly registering it with
register_taxonomy_for_object_type( 'category', 'event' );
and that worked as expected...

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.