Steven, i think i’m almost there. i went back and read your message about custom links and i’m not quite sure where to put this;
If i add these Will these then show up on the “add entry” form in admin?
add_filters( ‘cn_link_options’, ‘cn_add_new_link_types’ );
function cn_add_new_link_types( $options ) {
$options[‘new_one’] = ‘New One’;
$options[‘new_two’] = ‘New Two’;
return $options;
}
The key is I need different links for each outfitter & for each category
would i do;
$options[‘bear’] = ‘Black Bear Page’;
$options[‘whitetail’] = ‘Whitetail Page’;
$options[‘muledeer’] = ‘Mule Deer Page’;
etc for each category?
For example again, Willow Creek Outfitters will have a whitetail deer page, a mule deer page, a black bear page and a company listing. On the main black bear page where all the outfitters will be listed, the user clicks “View Hunt Information” That link would need to go to the respective pages for the outfitter, in this case, willow creek black bear page, a different one for the whitetail page and a different for mule deer page and a different for company listing.
Please tell me this is possible with custom links otherwise I don’t know what to do.
