woocommerce_placeholder_img()WC 1.0

Deprecated since 3.0. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.

No Hooks.

Returns

null. Nothing (null).

Usage

woocommerce_placeholder_img( $size );
$size
.
Default: 'woocommerce_thumbnail'

Changelog

Deprecated since 3.0

woocommerce_placeholder_img() code WC 9.9.5

function woocommerce_placeholder_img( $size = 'woocommerce_thumbnail' ) {
	wc_deprecated_function( __FUNCTION__, '3.0', 'wc_placeholder_img' );
	return wc_placeholder_img( $size );
}