HEX
Server: LiteSpeed
System: Linux server334.web-hosting.com 4.18.0-553.124.4.lve.el8.x86_64 #1 SMP Fri May 15 13:02:13 UTC 2026 x86_64
User: richfield (1256)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: //proc/self/cwd/wp-content/plugins/blocksy-companion/framework/features/conditions/rules/posts.php
<?php

$options = [];

$posts_options = [];

if ($filter === 'all' || $filter === 'archive') {
	$posts_options[] = [
		'id' => 'all_post_archives',
		'title' => __('Post Archives', 'blocksy-companion')
	];

	$posts_options[] = [
		'id' => 'post_categories',
		'title' => __('Post Categories', 'blocksy-companion')
	];

	$posts_options[] = [
		'id' => 'post_tags',
		'title' => __('Post Tags', 'blocksy-companion')
	];
}

if ($filter === 'all' || $filter === 'singular') {
	$posts_options[] = [
		'id' => 'single_post',
		'title' => __('Single Post', 'blocksy-companion')
	];

}

$options[] = [
	'title' => __('Posts', 'blocksy-companion'),
	'rules' => $posts_options
];