Closed chriwen closed 3 years ago
we need to add flush_rewrite_rules()
add_action( 'init', 'my_custom_post_type' ); function my_custom_post_type() { $args = array( 'public' => true, 'label' => 'Board Games' ); register_post_type( 'boardgames', $args ); }
function myplugin_flush_rewrites() { my_custom_post_type(); flush_rewrite_rules(); }
register_activation_hook( FILE, 'myplugin_flush_rewrites' );
Nach Neuinstallation landet man auf 404-Seite bei Klick auf jetzt buchen.
Workaround: die Permalink-Seite aufrufen. Dann funktionierts.