Skip to content

Instantly share code, notes, and snippets.

@BeholdPL
Created March 22, 2021 00:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BeholdPL/c5ccf1873d346f359f314edb9cfaf5e5 to your computer and use it in GitHub Desktop.
Save BeholdPL/c5ccf1873d346f359f314edb9cfaf5e5 to your computer and use it in GitHub Desktop.
New widget area #wordpress #widget #sidebar
<?php
function newWidgetsArea() {
register_sidebar( array(
'name' => __( 'Stopka 1', 'text-domain' ),
'id' => 'footer-1-col',
'description' => __( 'Widgets in this area will be shown on all posts and pages.', 'text-domain' ),
'before_widget' => '<li id="%1$s" class="widget %2$s">',
'after_widget' => '</li>',
'before_title' => '<h2 class="widgettitle">',
'after_title' => '</h2>',
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment