php 自定义小部件区域

Posted

tags:

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

<?php
// Create
add_action( 'widgets_init', function() {
  $args = [
      'id'            => 'custom_sidebar',
      'name'          => __( 'Custom Widget Area', 'text_domain' ),
      'description'   => __( 'A custom widget area', 'text_domain' ),
      'before_title'  => '<h3 class="widget-title">',
      'after_title'   => '</h3>',
      'before_widget' => '<aside id="%1$s" class="widget %2$s">',
      'after_widget'  => '</aside>',
  ];
  register_sidebar( $args );
} );
// Display
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('custom_sidebar') ) : ?>
<!–Default sidebar info goes here–>
<?php endif; ?>

以上是关于php 自定义小部件区域的主要内容,如果未能解决你的问题,请参考以下文章

php 自定义小部件区域生成器

php 自定义小部件区域

php 如何创建自定义小部件区域

php 添加自定义小部件区域

PHP Wordpress:自定义小部件区域

自定义 Qt 设计器小部件:包含自定义垂直布局的滚动区域