HEX
Server: Apache
System: Linux pdx1-shared-a1-11 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mollywopper (10344313)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/mollywopper/mollywoppersnyb.com/wp-content/themes/pagelines/functions.php

<?php /** * FUNCTIONS / THEME INITIALIZATION * * This file loads the core framework which handles everything. * * @package PageLines Framework * @since 1.0 * * @link http://www.pagelines.com/ * @link http://www.pagelines.com/tour * * @author PageLines http://www.pagelines.com/ * @copyright Copyright (c) 2008-2012, PageLines hello@pagelines.com * * @internal last revised January 20, 2012 * @version ... * * @todo Define version */ require_once(get_template_directory() . '/includes/init.php'); add_action('woocommerce_before_main_content', 'my_theme_wrapper_start', 10); add_action('woocommerce_after_main_content', 'my_theme_wrapper_end', 10); function my_theme_wrapper_start() { echo '<div id="main">'; } function my_theme_wrapper_end() { echo '</div>'; } add_theme_support( 'woocommerce' );