Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author websupporter

    (@websupporter)

    Hi max143,
    basically, you can’t.

    But… I am not quite sure, if this would work, but you can give it a try:

    add_filter( 'sf-filter-args', 'show_all_posts' );
    function show_all_posts( $args ) {
    	$args['posts_status'] = 'private';
    	return $args;
    }

    Add this to your child themes functions.php

    But there is no inbuilt support for this in the plugin. It relies on published posts.

    I hope this helps you ??

    Thread Starter max143

    (@max143)

    Thanks for answer.
    I add this code, but it does not help, private posts are not displaing.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Private posts to display’ is closed to new replies.