php 自定义小部件区域
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 自定义小部件区域相关的知识,希望对你有一定的参考价值。
<?php
// Register widget areas
function olivia_widgets() {
genesis_register_sidebar( array(
'id' => 'footer-widget-header',
'name' => __( 'Footer Widget Header', 'olivia' ),
'description' => __( 'This appears above the footer', 'olivia' ),
) );
}
add_action ( 'widgets_init', 'olivia_widgets' );
//Position footer widget header
add_action ( 'genesis_before_footer', 'olivia_footer_widget_header_position', 5 );
function olivia_footer_widget_header_position () {
genesis_widget_area( 'footer-widget-header', array(
'before' => '<div class="footer-widget-header widget-area">',
'after' => '</div>',
) );
}
//* Within Genesis setup
//* Load widget areas
include_once( get_stylesheet_directory() . '/includes/widget-areas.php' );
以上是关于php 自定义小部件区域的主要内容,如果未能解决你的问题,请参考以下文章
php 自定义小部件区域生成器
php 自定义小部件区域
php 如何创建自定义小部件区域
php 添加自定义小部件区域
PHP Wordpress:自定义小部件区域
自定义 Qt 设计器小部件:包含自定义垂直布局的滚动区域