Skip to content

Instantly share code, notes, and snippets.

@cagriuckan
Last active March 21, 2017 19:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cagriuckan/4b18a698d2b2503c96947c36a70bbeda to your computer and use it in GitHub Desktop.
Save cagriuckan/4b18a698d2b2503c96947c36a70bbeda to your computer and use it in GitHub Desktop.
Wordpress Add Widget to Theme
<?php
/*
Author: uckannet
Link: http://www.uckan.net/2017/01/23/wordpress-spotify-da-dinlediginiz-sarkiyi-bilesen-olarak-sitenizde-gosterin
*/
if(function_exists('register_sidebar')) {
register_sidebar(array(
'name' => 'Sidebar', /* optionally change */
'before_widget' => '<aside id="%1$s" class="widgets %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h3"> ',
'after_title' => '</h3>',
));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment