Warning: This method has been deprecated.

WC_Emails::email_footer_replace_site_title( string $string )

Filter callback to replace {site_title} in email footer


Description Description


Parameters Parameters

$string

(Required) Email footer text.


Top ↑

Return Return

(string) Email footer text with any replacements done.


Top ↑

Source Source

File: includes/class-wc-emails.php

	public function email_footer_replace_site_title( $string ) {
		wc_deprecated_function( 'WC_Emails::email_footer_replace_site_title', '3.7.0', 'WC_Emails::replace_placeholders' );
		return $this->replace_placeholders( $string );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.7.0 This method has been deprecated.
3.3.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.