Guest User

Untitled

a guest
Jul 18th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. $container = get_theme_mod( 'understrap_container_type' );
  2.  
  3. add_filter( 'theme_mod_understrap_container_type', 'override_container_type' );
  4. function override_container_type() {
  5. if ( get_field('sidebar_position') !== 'inherit' ){
  6. return get_field('sidebar_position');
  7. }
  8. else {
  9. return get_theme_mod( 'understrap_sidebar_position' );
  10. }
  11. }
Add Comment
Please, Sign In to add comment