• Skip to main content
  • Skip to primary sidebar
  • Business
  • WordPress
  • Security
  • Marketing
  • Publicity
  • Computing
  • Resources
  • Whatevs

Purely Wordpress

Just The Tech, News, and Info We Deem To Post

  • Home
  • About
  • Contact
  • Contribute
You are here: Home / Code Snippets / Insert widget below the footer in Genesis

Insert widget below the footer in Genesis

Genesis Theme Framework Code Snippets

Add the following code to your WordPress theme’s function.php file, or a functionality plugin to insert a widget below the footer in Genesis.

/** 
Register widget
*/

/** Register widget areas */
genesis_register_sidebar( array(
'id' => 'ft-highlights',
'name' => __( 'Footer Highlights', 'genesis' ),
'description' => __( 'This is the Footer Highlight text widget.', 'cfhlh' ),
) );
/** 
Create and position widget 
*/

/** Add Editable Footer Section */
add_action( 'genesis_after', 'footer_highlights', 10 );
function footer_highlights() {
genesis_widget_area( 'ft-highlights', array(
'before' => '<div class="ft-highlights widget-area">',
'after' => '</div>',
) );
}

by Jack Alltrade on October 5, 2017

Filed Under: Code Snippets Tagged With: Footer, Genesis Framework, Widgets, WordPress Widgets

Reader Interactions

Share Your Two Cents Cancel reply

Your email address will not be published. Required fields are marked *

Primary Sidebar

Categories

  • Code Snippets
  • Development
  • File Management
  • Genesis Framework
  • Hosting
  • Legacy
  • Plugins
  • SEO
  • Tech Terms
  • Themes
  • User Experience
  • User Interface
  • WordPress Core
  • WordPress Functionality

Warning! Use at your own risk!

As always, use at your own risk and remember to backup your site prior to inserting new code.

© Copyright Jack Alltrade & Associates 2025 · Purely Supplemental™ is a trademark of Jack Alltrade & Associates