# depicter/trunk/app/src/Rules/Condition/WordPress/Page.php

Depicter — Popup &amp; Slider Builder, version trunk. 42 lines.

- Page: https://pluginprobe.com/plugins/depicter/trunk/code/app/src/Rules/Condition/WordPress/Page.php
- Raw: https://pluginprobe.com/plugins/depicter/trunk/raw/app/src/Rules/Condition/WordPress/Page.php
- Modified: 2024-01-29T10:15:28+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/depicter/trunk/code/app/src/Rules/Condition/WordPress/Page.php#L10-L20`.

```php
<?php

namespace Depicter\Rules\Condition\WordPress;

class Page extends Post {

	/**
	 * @inheritdoc
	 */
	public $slug = 'WordPress_Page';

	/**
	 * @inheritdoc
	 */
	public $control = 'remoteMultiSelect';

	/**
	 * @inheritdoc
	 */
	protected $queryable = true;

	/**
	 * @inheritdoc
	 */
	protected $belongsTo = 'WordPress';

	/**
	 * Post type
	 *
	 * @var string
	 */
	protected $postType = 'page';

	/**
	 * @inheritdoc
	 */
	public function getLabel(){
		return __('A WP Page', 'depicter' );
	}

}

```
