Skip to content

Instantly share code, notes, and snippets.

@calvez
Created August 5, 2018 10:27
Show Gist options
  • Select an option

  • Save calvez/13973e16b99eee653d6c6a840d1fd706 to your computer and use it in GitHub Desktop.

Select an option

Save calvez/13973e16b99eee653d6c6a840d1fd706 to your computer and use it in GitHub Desktop.
<?php
// Register Sidebars
function szif_sidebars() {
$args = array(
'id' => 'szif',
'class' => 'szif-right',
'name' => __( 'Szépirodalmi figyelő', 'szif' ),
'description' => __( 'A szépirodalmi figyelő oldalain megejelenő sidebar', 'szif' ),
);
register_sidebar( $args );
$args = array(
'id' => 'szif-konyvek',
'class' => 'szif-konyvek-right',
'name' => __( 'SZIF Könyvek', 'szif' ),
'description' => __( 'A \"szif könyvek\" oldalakon megjelenő oldalsáv', 'szif' ),
);
register_sidebar( $args );
$args = array(
'id' => 'szif-kepregenyek',
'class' => 'szif-kepregenyek-right',
'name' => __( 'SZIF képregények', 'szif' ),
'description' => __( 'A \"szif képregények\" oldalakon megjelenő oldalsáv', 'szif' ),
);
register_sidebar( $args );
}
add_action( 'widgets_init', 'szif_sidebars' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment