mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
7 lines
175 B
Text
7 lines
175 B
Text
function my_custom_empty_cart_message($message) {
|
|
return '
|
|
' . $message . ' Please buy something.
|
|
|
|
';
|
|
}
|
|
add_filter('edd_empty_cart_message', 'my_custom_empty_cart_message');
|