display widget checkbox selection on frontend
Without actually knowing what you’re trying to achieve I see the following problems: $post variable is not defined in your widget() method. Try setting it using $post = get_post( get_the_ID() ) for instance. By the time you call foreach ($posts as $post) { … } $posts variable is also not set. You need some query … Read more