Forum Replies Created

Viewing 1 replies (of 1 total)
  • For anyone who wants to tinker with the footer, I believe it is set with line 179+ of the hooks.php file at \wp-content\themes\omega\lib.

    /**
     * default footer insert filter
     */
    function omega_default_footer_insert( $settings ) {
    
    	/* If there is a child theme active, use [child-link] shortcode to the $footer_insert. */
    	return '<p class="copyright">' . __( 'Copyright © [the-year] [site-link].', 'omega' ) . '</p>' . "\n\n" . '<p class="credit">' . __( 'Theme by [author-uri].', 'omega' ) . '</p>';	
    
    }
    
    /**
     * Loads footer content
     */
    function omega_footer_insert() {
    
    	echo '<div class="footer-content footer-insert">';
    
    	if ( $footer_insert = get_theme_mod( 'custom_footer' ) ) {
    		echo omega_apply_atomic_shortcode( 'footer_content', $footer_insert );
    	} else {
    		echo omega_apply_atomic_shortcode( 'footer_content', apply_filters( 'omega_footer_insert','') );
    	}
    
    	echo '</div>';
    }
Viewing 1 replies (of 1 total)