????

Your IP : 3.148.227.92


Current Path : C:/inetpub/vhost/binhdinhf1.gdtsolutions.vn/shop/wp-content/plugins/mailpoet/lib/WP/
Upload File :
Current File : C:/inetpub/vhost/binhdinhf1.gdtsolutions.vn/shop/wp-content/plugins/mailpoet/lib/WP/Posts.php

<?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing

namespace MailPoet\WP;

if (!defined('ABSPATH')) exit;


use MailPoet\WP\Functions as WPFunctions;

class Posts {
  public static function getTypes($args = [], $output = 'names', $operator = 'and') {
    $defaults = [
      'exclude_from_search' => false,
    ];
    $args = array_merge($defaults, $args);
    return WPFunctions::get()->getPostTypes($args, $output, $operator);
  }
}