Tagged: taxonomy
- This topic has 10 replies, 2 voices, and was last updated 4 years, 1 month ago by
Steve.
-
AuthorPosts
-
-
December 22, 2017 at 9:47 am #8625
dprophitjrParticipant1. Use same tax/cat on pages.
2. User Editor
a. User can checkmark cats/tax of interest
3. UI is within the user and role subscriber to edit.Related: https://piklist.com/learn/doc/getting-started-taxonomies-piklist/
-
December 22, 2017 at 9:49 am #8626
dprophitjrParticipantwhat functions do I need to add to accomplish this?
-
December 22, 2017 at 7:19 pm #8629
SteveKeymaster-
December 22, 2017 at 7:38 pm #8631
dprophitjrParticipantHere’s the idea cooking up: Rss2html mailchimp newsletter and for CRM export so that we know what interests them the most. ofc, other things can be done in filtering to segments from taxonomy. so the existing taxonomy is display to user and they check/save taxonomy that matters to them. Helps identify personas as well for in-market segments.
-
-
December 22, 2017 at 7:39 pm #8632
dprophitjrParticipantThe user does not define their own. It’s is merely array echoed out to them for what is their favorites
-
December 22, 2017 at 7:51 pm #8633
SteveKeymasterSo you want a taxonomy for users?
-
December 22, 2017 at 8:03 pm #8634
dprophitjrParticipantI guess I phrased it wrong. WP Site sets up the cats/taxonomies that are the same for page&post. Inside user account, check mark the taxonomies that matter to you. Collect data to use in marketing about your users from taxonomies that mattered to them. [ if user checks ‘wordpress’] taxonomy, add to newsletter segment => wordpress.
-
December 22, 2017 at 8:06 pm #8635
dprophitjrParticipantfunction add_taxonomies_to_pages() { register_taxonomy_for_object_type( 'post_tag', 'page' ); register_taxonomy_for_object_type( 'category', 'page' ); } add_action( 'init', 'add_taxonomies_to_pages' ); -
December 22, 2017 at 8:08 pm #8636
dprophitjrParticipantSo if I have wooCommerce setup and tags and cats for dining room and tags of dining tables, china, cutlery, etc and user checks interests in china, cutlery, I have actionable intelligence as to what interests them more on my site after they register and save taxonomy data.
-
December 22, 2017 at 8:10 pm #8637
dprophitjrParticipantWe would then need an archive paged called reports with option to csv/xml name, email, tag terms as contact tags to crm
-
December 26, 2017 at 12:35 pm #8642
SteveKeymasterYou can’t share taxonomies between object types, like CPTs and Users. Use something like this:
function my_register_taxonomy_for_cpts() { register_taxonomy_for_object_type('post_tag_user', 'post'); register_taxonomy_for_object_type('category_user', 'page'); } add_action('init', 'my_register_taxonomy_for_cpts');
-
-
AuthorPosts
- You must be logged in to reply to this topic.