modules/custom-post-types/testimonial.php 1 location
|
@@ 359-366 (lines=8) @@
|
| 356 |
|
/** |
| 357 |
|
* Change ‘Enter Title Here’ text for the Testimonial. |
| 358 |
|
*/ |
| 359 |
|
function change_default_title( $title ) { |
| 360 |
|
$screen = get_current_screen(); |
| 361 |
|
|
| 362 |
|
if ( self::CUSTOM_POST_TYPE == $screen->post_type ) |
| 363 |
|
$title = esc_html__( "Enter the customer's name here", 'jetpack' ); |
| 364 |
|
|
| 365 |
|
return $title; |
| 366 |
|
} |
| 367 |
|
|
| 368 |
|
/** |
| 369 |
|
* Change ‘Title’ column label on all Testimonials page. |
modules/custom-post-types/nova.php 1 location
|
@@ 274-281 (lines=8) @@
|
| 271 |
|
/** |
| 272 |
|
* Change ‘Enter Title Here’ text for the Menu Item. |
| 273 |
|
*/ |
| 274 |
|
function change_default_title( $title ) { |
| 275 |
|
$screen = get_current_screen(); |
| 276 |
|
|
| 277 |
|
if ( self::MENU_ITEM_POST_TYPE == $screen->post_type ) |
| 278 |
|
$title = esc_html__( "Enter the menu item's name here", 'jetpack' ); |
| 279 |
|
|
| 280 |
|
return $title; |
| 281 |
|
} |
| 282 |
|
|
| 283 |
|
|
| 284 |
|
/** |