Skip to content

Instantly share code, notes, and snippets.

@jmabbas
Created September 4, 2024 06:36
Show Gist options
  • Save jmabbas/13d47ef40835002ab43613fa07310acb to your computer and use it in GitHub Desktop.
Save jmabbas/13d47ef40835002ab43613fa07310acb to your computer and use it in GitHub Desktop.
MAS Videos - movies description change
add_filter( 'masvideos_register_post_type_movie', 'mas_child_change_movies_descrioption', 98 );
function mas_child_change_movies_descrioption( $args ) {
$args['description'] = 'This is where you can add new movies to your site.';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment