Last active
October 2, 2023 08:26
-
-
Save woogists/cc3787e56446601ac5d14971b2e01a62 to your computer and use it in GitHub Desktop.
[Theming Snippets] Change the placeholder image
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Change the placeholder image | |
*/ | |
add_filter('woocommerce_placeholder_img_src', 'custom_woocommerce_placeholder_img_src'); | |
function custom_woocommerce_placeholder_img_src( $src ) { | |
$upload_dir = wp_upload_dir(); | |
$uploads = untrailingslashit( $upload_dir['baseurl'] ); | |
// replace with path to your image | |
$src = $uploads . '/2012/07/thumb1.jpg'; | |
return $src; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Why is this filter contained within an action on
init
? Why not just: