Articles
Adding a Widgeted Footer in a Studio Press Theme
Below is directions for creating a 3 column footer area for a Genesis Child Theme using the Simple Hooks Plugin. First: Register Sidebars in functions.php: <p>genesis_register_sidebar(array(</p> <p>‘name’=>’Home Bottom #4′,</p> <p>‘description’ => ‘This is the first column of the bottom section of the homepage.’,</p> <p>‘before_widget’ => ‘<div id=”%1$s” class=”widget %2$s”>’, ‘after_widget’ => ‘</div>’,</p> <p>‘before_title’=>’<h4 class=”widgettitle”>’,’after_title’=>’</h4>’</p> <p>));</p> [...]


