Need to add rewrite rule that adds in additional information about the post to url
Sorry I took so long to write this up. Hope it’s still useful. This is based off of a tutorial found here and some general playing around. <?php //This function sets up the permastructure add_action(‘init’, ‘setup_permastruct’, 40); function setup_permastruct() { //Setup query vars add_rewrite_tag(‘%state%’,'([^/]+)’); add_rewrite_tag(‘%suburb%’,'([^/]+)’); //Permastruct for custom post type add_permastruct(‘venue’, ‘venue/%state%/%suburb%/%postname%’, false); } //This … Read more