Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AlexandrKutsenko/4eadd897f3987240bb8070a82ad17aca to your computer and use it in GitHub Desktop.
Save AlexandrKutsenko/4eadd897f3987240bb8070a82ad17aca to your computer and use it in GitHub Desktop.
Register portfolio fields post type
/*
* Register portfolio fields post type
*/
function add_portfolio_img_post_type() {
register_post_type('add_portfolio_img', array(
'public' => true,
'labels' => array(
'name' => __('Картинки портфолио')
)
));
}
add_action('init', 'add_portfolio_img_post_type');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment