modules/custom-post-types/nova.php 1 location
|
@@ 313-320 (lines=8) @@
|
310 |
|
/** |
311 |
|
* Change ‘Enter Title Here’ text for the Menu Item. |
312 |
|
*/ |
313 |
|
function change_default_title( $title ) { |
314 |
|
$screen = get_current_screen(); |
315 |
|
|
316 |
|
if ( self::MENU_ITEM_POST_TYPE == $screen->post_type ) |
317 |
|
/* translators: this is about a food menu */ |
318 |
|
$title = esc_html__( "Enter the menu item's name here", 'jetpack' ); |
319 |
|
|
320 |
|
return $title; |
321 |
|
} |
322 |
|
|
323 |
|
|
modules/custom-post-types/testimonial.php 1 location
|
@@ 369-376 (lines=8) @@
|
366 |
|
/** |
367 |
|
* Change ‘Enter Title Here’ text for the Testimonial. |
368 |
|
*/ |
369 |
|
function change_default_title( $title ) { |
370 |
|
$screen = get_current_screen(); |
371 |
|
|
372 |
|
if ( self::CUSTOM_POST_TYPE == $screen->post_type ) |
373 |
|
$title = esc_html__( "Enter the customer's name here", 'jetpack' ); |
374 |
|
|
375 |
|
return $title; |
376 |
|
} |
377 |
|
|
378 |
|
/** |
379 |
|
* Change ‘Title’ column label on all Testimonials page. |