Skip to content

Instantly share code, notes, and snippets.

@manhleo93
Created July 24, 2017 14:23
Show Gist options
  • Save manhleo93/cc3aab0b42312ad4952a92a99c01130d to your computer and use it in GitHub Desktop.
Save manhleo93/cc3aab0b42312ad4952a92a99c01130d to your computer and use it in GitHub Desktop.
// Register front-page widget areas
for ( $i = 1; $i <= 5; $i++ ) {
genesis_register_widget_area(
array(
'id' => "front-page-{$i}",
'name' => __( "Front Page {$i}", 'my-theme-text-domain' ),
'description' => __( "This is the front page {$i} section.", 'my-theme-text-domain' ),
)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment