{"id":33099,"date":"2013-02-20T16:43:54","date_gmt":"2013-02-21T00:43:54","guid":{"rendered":"http:\/\/tri.be\/support\/forums\/topic\/categorize-imported-events\/"},"modified":"2013-02-20T16:43:54","modified_gmt":"2013-02-21T00:43:54","slug":"categorize-imported-events","status":"closed","type":"topic","link":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/categorize-imported-events\/","title":{"rendered":"Categorize Imported Events"},"content":{"rendered":"<p>Hi All,<br \/>\nI&#8217;ve seen the request (https:\/\/theeventscalendar.com\/support\/forums\/topic\/facebook-events\/ and https:\/\/theeventscalendar.com\/support\/forums\/topic\/facebook-events-feature-requests\/) to categorize imported events and so I thought I&#8217;d share a code snippet that I&#8217;ve written and see if other people can help push it forward.<\/p>\n<p>The following function and filter sets a category for any imported events. At one point, I tried to also set the Organizer as a tag, but I had a hard time accessing that data for some reason. If you can benefit from this, please use it! If you can improve it, please share your work!<br \/>\n<code><br \/>\n\/**<br \/>\n * Sets events from Facebook by Tribe Events Facebook to use a predetermined category<br \/>\n *<br \/>\n * IMPORTANT: Replace \"{CATEGORY ID}\" on Line 35 (wp_set_object_terms...) with the ID of the category for imported events on your site.<br \/>\n * IMPORTANT: This sets a term in the default \"category\" taxonomy. You may prefer to set the term in the 'tribe_events_cat' taxonomy<br \/>\n *<br \/>\n * @param \t$post_id \tint \tid of post being inserted<br \/>\n * @param \t$post \t\tobj \tthe post object<br \/>\n *<br \/>\n * @uses \tget_post_type()<br \/>\n * @uses \tget_post_meta()<br \/>\n * @uses \twp-set_object_terms()<br \/>\n * @uses\twp_is_post_revision()<br \/>\n *<br \/>\n * @todo \tTag based on event sponsor<br \/>\n * @todo \tUI and saved option to select category of imported events<br \/>\n *\/<br \/>\nfunction mrw_tag_imported_events( $post_id, $post ) {<\/p>\n<p>\t\/\/ stop if args aren't set or we're not dealing with an event<br \/>\n\tif (<br \/>\n\t\t! ( isset($postId) &amp;&amp; isset($post-&gt;post_type) )<br \/>\n\t\t&amp;&amp; ! get_post_type($post_id) == 'tribe_events'<br \/>\n\t) {<br \/>\n\t\treturn;<br \/>\n\t}<\/p>\n<p>\t\/\/ get the field Tribe sets for event source<br \/>\n\t$mrw_event_origin = get_post_meta( $post_id, '_EventOrigin', true );<\/p>\n<p>\t\/\/ if source is facebook and this isn't a revision, set a category for the post<br \/>\n\tif( $mrw_event_origin  == 'facebook-importer' &amp;&amp; !wp_is_post_revision( $post_id ) ) {<\/p>\n<p>\t\t\/\/ set category to 'community events'<br \/>\n\t\twp_set_object_terms( $post_id, {CATEGORY ID}, 'category', true );<\/p>\n<p>\t}<\/p>\n<p>}<br \/>\nadd_action( 'wp_insert_post', 'mrw_tag_imported_events', 11, 2 );<br \/>\n<\/code><\/p>\n","protected":false},"template":"","class_list":["post-33099","topic","type-topic","status-closed","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Categorize Imported Events -<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/theeventscalendar.com\/support\/forums\/topic\/categorize-imported-events\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Categorize Imported Events -\" \/>\n<meta property=\"og:description\" content=\"Hi All, I&#8217;ve seen the request (https:\/\/theeventscalendar.com\/support\/forums\/topic\/facebook-events\/ and https:\/\/theeventscalendar.com\/support\/forums\/topic\/facebook-events-feature-requests\/) to categorize imported events and so I thought I&#8217;d share a code snippet that I&#8217;ve written and see if other people can help push it forward. The following function and filter sets a category for any imported events. At one point, I tried to also set [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/theeventscalendar.com\/support\/forums\/topic\/categorize-imported-events\/\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/theeventscalendar.com\/support\/forums\/topic\/categorize-imported-events\/\",\"url\":\"https:\/\/theeventscalendar.com\/support\/forums\/topic\/categorize-imported-events\/\",\"name\":\"Categorize Imported Events -\",\"isPartOf\":{\"@id\":\"https:\/\/theeventscalendar.com\/support\/#website\"},\"datePublished\":\"2013-02-21T00:43:54+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/theeventscalendar.com\/support\/forums\/topic\/categorize-imported-events\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/theeventscalendar.com\/support\/forums\/topic\/categorize-imported-events\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/theeventscalendar.com\/support\/forums\/topic\/categorize-imported-events\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/theeventscalendar.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Topics\",\"item\":\"https:\/\/theeventscalendar.com\/support\/topics\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Calendar Products\",\"item\":\"https:\/\/theeventscalendar.com\/support\/forums\/forum\/events\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Event Aggregator\",\"item\":\"https:\/\/theeventscalendar.com\/support\/forums\/forum\/events\/event-aggregator\/\"},{\"@type\":\"ListItem\",\"position\":5,\"name\":\"Categorize Imported Events\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/theeventscalendar.com\/support\/#website\",\"url\":\"https:\/\/theeventscalendar.com\/support\/\",\"name\":\"\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/theeventscalendar.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Categorize Imported Events -","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/categorize-imported-events\/","og_locale":"en_US","og_type":"article","og_title":"Categorize Imported Events -","og_description":"Hi All, I&#8217;ve seen the request (https:\/\/theeventscalendar.com\/support\/forums\/topic\/facebook-events\/ and https:\/\/theeventscalendar.com\/support\/forums\/topic\/facebook-events-feature-requests\/) to categorize imported events and so I thought I&#8217;d share a code snippet that I&#8217;ve written and see if other people can help push it forward. The following function and filter sets a category for any imported events. At one point, I tried to also set [&hellip;]","og_url":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/categorize-imported-events\/","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/categorize-imported-events\/","url":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/categorize-imported-events\/","name":"Categorize Imported Events -","isPartOf":{"@id":"https:\/\/theeventscalendar.com\/support\/#website"},"datePublished":"2013-02-21T00:43:54+00:00","breadcrumb":{"@id":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/categorize-imported-events\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/theeventscalendar.com\/support\/forums\/topic\/categorize-imported-events\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/categorize-imported-events\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/theeventscalendar.com\/support\/"},{"@type":"ListItem","position":2,"name":"Topics","item":"https:\/\/theeventscalendar.com\/support\/topics\/"},{"@type":"ListItem","position":3,"name":"Calendar Products","item":"https:\/\/theeventscalendar.com\/support\/forums\/forum\/events\/"},{"@type":"ListItem","position":4,"name":"Event Aggregator","item":"https:\/\/theeventscalendar.com\/support\/forums\/forum\/events\/event-aggregator\/"},{"@type":"ListItem","position":5,"name":"Categorize Imported Events"}]},{"@type":"WebSite","@id":"https:\/\/theeventscalendar.com\/support\/#website","url":"https:\/\/theeventscalendar.com\/support\/","name":"","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/theeventscalendar.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/theeventscalendar.com\/support\/wp-json\/wp\/v2\/topic\/33099","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/theeventscalendar.com\/support\/wp-json\/wp\/v2\/topic"}],"about":[{"href":"https:\/\/theeventscalendar.com\/support\/wp-json\/wp\/v2\/types\/topic"}],"version-history":[{"count":0,"href":"https:\/\/theeventscalendar.com\/support\/wp-json\/wp\/v2\/topic\/33099\/revisions"}],"wp:attachment":[{"href":"https:\/\/theeventscalendar.com\/support\/wp-json\/wp\/v2\/media?parent=33099"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}