Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <?php //* do not include php tag
  2.  
  3. add_filter( 'schema_acf_field_post_type_select_choices', 'schema_acf_field_post_type_select_choices_add_product_45263542' );
  4. /**
  5. * Schema Premium Plugin: Add missing post type "product" to Locations post type select choices
  6. *
  7. * @since 1.0.0
  8. */
  9. function schema_acf_field_post_type_select_choices_add_product_45263542( $post_types ) {
  10.  
  11. $post_types[] = array(
  12. 'value' => 'product',
  13. 'label' => 'Products'
  14. );
  15.  
  16. return $post_types;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement