sidebar settings –> Sidebar on Single Post Entries –> select「 left sidebar 」
Can it only show left sidebar in the all single portfolio items, not include all single blog posts.
Hey Johnny,
Thank you for using Enfold.
This filter should help you with that.
add_filter('avia_layout_filter', 'avia_change_post_layout', 10, 2);
function avia_change_post_layout($layout, $post_id) {
if( is_singular('post') ) {
$layout['current'] = $layout['fullsize'];
$layout['current']['main'] = 'fullsize';
}
return $layout;
}
Best regards,
Ismael
perfect
it’s worked
thank you