Modyfikacja motywu Astra z poziomu kodu

Zmiana ułożenia sidebaru

Niestety tutaj wychodzi brak konsekwencji w nazywaniu opcji i filtr do zmiany układu nazywa się astra_page_layout

Są trzy mozliwości:

  • left-sidebar
  • right-sidebar
  • no-sidebar
add_filter('astra_page_layout', function( $layout ){
    if(conditions) {
        return $layout;
    }

    return 'no-sidebar';
});

Leave a Reply

Your email address will not be published. Required fields are marked *