HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/mmickelson/theflexguy.com/wp-content/themes/primepress/library/widgets.php
<?php 
function pp_widgets_init() {
	register_sidebar(array(
		'name' => 'Sidebar Wide',
		'id' => 'sidebar-wide',
		'description' => 'The is the sidebar you see at the top when you use the 1 or 3 sidebar layout',
		'berfore_widget' => '<li id="%1$s" class="widget %2$s">',
		'after_widget' => '</li>',
		'before_title' => '<h2 class="widgettitle">',
		'after_title' => '</h2>',
	));
	
	register_sidebar(array(
		'name' => 'Sidebar One',
		'id' => 'sidebar-one',
		'description' => 'The is the narrow sidebar on the left when you use the 2 or 3 sidebar layout',
		'berfore_widget' => '<li id="%1$s" class="widget %2$s">',
		'after_widget' => '</li>',
		'before_title' => '<h2 class="widgettitle">',
		'after_title' => '</h2>',
	));
	
	register_sidebar(array(
		'name' => 'Sidebar Two',
		'id' => 'sidebar-two',
		'description' => 'The is the narrow sidebar on the right when you use the 2 or 3 sidebar layout',
		'berfore_widget' => '<li id="%1$s" class="widget %2$s">',
		'after_widget' => '</li>',
		'before_title' => '<h2 class="widgettitle">',
		'after_title' => '</h2>',
	));
}
add_action('widgets_init', 'pp_widgets_init');
?>