Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save KaineLabs/870df6a6ee08987bc0d6faca70c7ba4a to your computer and use it in GitHub Desktop.
Save KaineLabs/870df6a6ee08987bc0d6faca70c7ba4a to your computer and use it in GitHub Desktop.
Post Author Widget - Add new post types support
<?php
/**
* Post Author Widget - Add new post types support
*/
function yzc_add_new_post_type_for_post_author_widget( $types ) {
$types[] = 'gd_business';
return $types;
}
add_filter( 'yz_post_author_widget_supported_types', 'yzc_add_new_post_type_for_post_author_widget' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment