Created
September 13, 2017 14:16
-
-
Save cobaltapps/d4d07087cef54226626802a8e652e36c to your computer and use it in GitHub Desktop.
The following provides all of the ways to set the various layouts offered in Freelancer.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Define a Right Sidebar layout. | |
| add_filter( 'freelancer_layout', 'freelancer_return_right_sidebar' ); | |
| // Define a Left Sidebar layout. | |
| add_filter( 'freelancer_layout', 'freelancer_return_left_sidebar' ); | |
| // Define a No Sidebar layout. | |
| add_filter( 'freelancer_layout', 'freelancer_return_no_sidebar' ); | |
| // Define a No Sidebar Narrow layout. | |
| add_filter( 'freelancer_layout', 'freelancer_return_no_sidebar_narrow' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment