Skip to content

Instantly share code, notes, and snippets.

@zgordon
Last active January 7, 2024 05:16
Show Gist options
  • Save zgordon/c78b35b91b363624e08ccecf151b841b to your computer and use it in GitHub Desktop.
Save zgordon/c78b35b91b363624e08ccecf151b841b to your computer and use it in GitHub Desktop.
Example of parameters for register_sidebar() function in WordPress
<?php
register_sidebar( [
'name' => esc_html__( 'Sidebar', 'themename' ),
'id' => 'main-sidebar',
'description' => esc_html__( 'Add widgets here.', 'themename' ),
'before_widget' => '<section class="widget">',
'class' => 'custom-widget-area',
'after_widget' => '</section>',
'before_title' => '<h2 class="widget-title">',
'after_title' => '</h2>',
] );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment