Viewing 1 replies (of 1 total)
  • Theme Author Tom

    (@edge22)

    Hi there,

    Give this function a try:

    add_filter( 'generate_sidebar_layout','generate_custom_attachment_sidebar_layout' );
    function generate_custom_attachment_sidebar_layout( $layout )
    {
     	// If we are on a category, set the sidebar
     	if ( is_attachment() )
     	 	return 'no-sidebar';
    
     	// Or else, set the regular layout
     	return $layout;
    
     }
Viewing 1 replies (of 1 total)
  • The topic ‘Attachment Page Sidebar Layout Not working.’ is closed to new replies.