Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- define('EDD_SLUG', 'download');
- function set_download_labels($labels) {
- $labels = array(
- 'name' => _x('Downloads', 'post type general name', 'your-domain'),
- 'singular_name' => _x('Download', 'post type singular name', 'your-domain'),
- 'add_new' => __('Download', 'your-domain'),
- 'add_new_item' => __('Add New Download', 'your-domain'),
- 'edit_item' => __('Edit Download', 'your-domain'),
- 'new_item' => __('New Download', 'your-domain'),
- 'all_items' => __('All Download', 'your-domain'),
- 'view_item' => __('View Download', 'your-domain'),
- 'search_items' => __('Search Download', 'your-domain'),
- 'not_found' => __('No Downloads found', 'your-domain'),
- 'not_found_in_trash' => __('No Downloads found in Trash', 'your-domain'),
- 'parent_item_colon' => '',
- 'menu_name' => __('Downloads', 'your-domain')
- );
- return $labels;
- }
- add_filter('edd_download_labels', 'set_download_labels');
Advertisement
Add Comment
Please, Sign In to add comment