Git Product home page Git Product logo

Comments (3)

jjgrainger avatar jjgrainger commented on September 23, 2024

The class options are the same as the register_post_type arguments here.

There is an option for has_archive that by default is set to false.

When registering your post type you'll need to set this to true like so:

$books = new CPT('book', [
    'has_archive' => true
]);

Hope this helps,

Thanks,

Joe

from wp-custom-post-type-class.

msacchetti avatar msacchetti commented on September 23, 2024

I think the problem is the theme - I'm using the theme https://github.com/tonik/theme which uses a lot of hooks and actions to load the theme which i read in a previous issue doesnt work right.

from wp-custom-post-type-class.

jjgrainger avatar jjgrainger commented on September 23, 2024

@msacchetti A common problem people come across is registering a post type with the class inside an action.

As the class registers actions/filters itself, you'll need to run the CPT code outside of any actions or filters.

If you're registering post types as the Tonik Theme Docs recommend, you'll most likely run into issues using the CPT class.

I'd recommend trying something like this:

namespace App\Theme\Structure;

use function App\Theme\config;

// Include the CPT class
require __DIR__ . '/path/to/CPT.php';

function register_book_post_type()
{
    // Register the post type
    $books = new CPT('book', [
       'has_archive' => true
    ]);
}

// call the function immeadiately to register post type
// CPT will register the necessary actions/filters
register_book_post_type();

Hope this helps, let me if you solve this.

from wp-custom-post-type-class.

Related Issues (20)

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.