php 将自定义文本元素添加到Storefront Powerpack的标头配置器中

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 将自定义文本元素添加到Storefront 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 将自定义文本元素添加到Storefront Powerpack的标头配置器中的主要内容,如果未能解决你的问题,请参考以下文章

Angular:将自定义管道添加到addControl()元素

将自定义标记 (HTMLMarkers) 添加到聚类

如何将自定义文本添加到primeng分页器

将自定义文本添加到 iPhone sdk 中的 uibutton

php 将自定义列添加到管理表

php 将自定义字段内容添加到菜单项