Skip to content

Instantly share code, notes, and snippets.

@bentasm1
Created February 8, 2016 16:01
Show Gist options
  • Save bentasm1/d875e201381c23148d68 to your computer and use it in GitHub Desktop.
Save bentasm1/d875e201381c23148d68 to your computer and use it in GitHub Desktop.
WC Vendors Pro - Placeholder for Description and Title
/* WC Vendors Pro - Custom Description Placeholder Text */
function custom_wcv_product_description( $args ) {
$args = array(
'placeholder' => __( 'Placeholder Text Here', 'wcvendors-pro' )
);
return $args;
}
add_filter( 'wcv_product_description', 'custom_wcv_product_description');
/* WC Vendors Pro - Custom Title Placeholder Text */
function custom_wcv_product_title( $args ) {
$args = array(
'placeholder' => __( 'Placeholder Text Here', 'wcvendors-pro' )
);
return $args;
}
add_filter( 'wcv_product_title', 'custom_wcv_product_title');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment