Skip to content

Instantly share code, notes, and snippets.

@phpbits
Created August 30, 2018 08:56
Show Gist options
  • Select an option

  • Save phpbits/de4bd7888952e82e064ce8eaa918a1dd to your computer and use it in GitHub Desktop.

Select an option

Save phpbits/de4bd7888952e82e064ce8eaa918a1dd to your computer and use it in GitHub Desktop.
Create Custom Sidebar
<?php
/*
* Create Custom Widget Area for Pages Only
*/
function page_only_custom_sidebar() {
register_sidebar(
array (
'name' => __( 'For Pages Only', 'your-site' ),
'id' => 'page-only-custom-sidebar',
'description' => __( 'Contents to this widget area will be displayed on pages only.', 'your-site' ),
'before_widget' => '<section id="%1$s" class="widget %2$s">',
'after_widget' => "</section>",
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
)
);
}
add_action( 'widgets_init', 'page_only_custom_sidebar' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment