php 店面Powerpack标头自定义文本元素

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 店面Powerpack标头自定义文本元素相关的知识,希望对你有一定的参考价值。

// Adds the text element to the powerpack header components
function sp_header_components_custom_text( $components ) {
	$components['text'] = array(
	'title' => __( 'Custom Text', 'storefront-powerpack' ),
	'hook'  => 'sp_header_custom_text_output'
	);

	return $components;
}
add_filter( 'sp_header_components', 'sp_header_components_custom_text' );

// Adds text area output to the Storefront header
function sp_header_custom_text_output() {
	echo '<div class="custom-text">';

		echo 'Some custom text added to header in Storefront Powerpack';

	echo '</div>';
}
add_action( 'storefront_header', 'sp_header_custom_text_output' );

以上是关于php 店面Powerpack标头自定义文本元素的主要内容,如果未能解决你的问题,请参考以下文章

在 WooCommerce Checkout 自定义文本字段中启用 Datepicker

PHP cURL 自定义标头

PHP CURL请求自定义标头[重复]

php 自定义接受标头中间件

php 没有获取自定义标头(Apache 2.4 + FPM/FastCGI php 7)

php 自定义接受标头的中间件内核