@@ -8,14 +8,14 @@ |
||
8 | 8 | $labels = array( |
9 | 9 | 'name' => _x($plural, 'taxonomy general name', 'stash'), |
10 | 10 | 'singular_name' => _x($single, 'taxonomy singular name', 'stash'), |
11 | - 'search_items' => __('Search ' . $plural, 'stash'), |
|
11 | + 'search_items' => __('Search '.$plural, 'stash'), |
|
12 | 12 | 'all_items' => __('All Genres', 'stash'), |
13 | - 'parent_item' => __('Parent ' . $single, 'stash'), |
|
14 | - 'parent_item_colon' => __('Parent :' . $single, 'stash'), |
|
15 | - 'edit_item' => __('Edit ' . $single, 'stash'), |
|
16 | - 'update_item' => __('Update ' . $single, 'stash'), |
|
17 | - 'add_new_item' => __('Add New ' . $single, 'stash'), |
|
18 | - 'new_item_name' => __('New ' . $single . ' Name', 'stash'), |
|
13 | + 'parent_item' => __('Parent '.$single, 'stash'), |
|
14 | + 'parent_item_colon' => __('Parent :'.$single, 'stash'), |
|
15 | + 'edit_item' => __('Edit '.$single, 'stash'), |
|
16 | + 'update_item' => __('Update '.$single, 'stash'), |
|
17 | + 'add_new_item' => __('Add New '.$single, 'stash'), |
|
18 | + 'new_item_name' => __('New '.$single.' Name', 'stash'), |
|
19 | 19 | 'menu_name' => __($single, 'stash'), |
20 | 20 | ); |
21 | 21 |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | */ |
12 | 12 | function get($name) |
13 | 13 | { |
14 | - return get_template_directory_uri() . '/dist/images/' . $name; |
|
14 | + return get_template_directory_uri().'/dist/images/'.$name; |
|
15 | 15 | } |
16 | 16 | |
17 | 17 | /** |
@@ -22,12 +22,12 @@ discard block |
||
22 | 22 | */ |
23 | 23 | function fetch($name) |
24 | 24 | { |
25 | - return get_stylesheet_directory() . '/dist/images/' . $name; |
|
25 | + return get_stylesheet_directory().'/dist/images/'.$name; |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | function display($name) |
29 | 29 | { |
30 | - return "<img src='" . $this->get($name) . "' />"; |
|
30 | + return "<img src='".$this->get($name)."' />"; |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | /** |