Current File : /var/www/e360ban/wp-content/plugins/wp-views/application/models/shortcode/taxonomy/id.php
<?php

namespace OTGS\Toolset\Views\Models\Shortcode\Taxonomy;

/**
 * Taxonomy term ID shortcode.
 *
 * @since 3.0.1
 */
class Id extends \WPV_Shortcode_Base {

	const SHORTCODE_NAME = 'wpv-taxonomy-id';

	/**
	 * @var array
	 */
	private $shortcode_atts = array(
		'term_id' => null,
	);

	/**
	 * @var string|null
	 */
	private $user_content;

	/**
	 * @var array
	 */
	private $user_atts;

	/**
	* Get the shortcode output value.
	*
	* @param $atts
	* @param $content
	* @return string
	* @since 3.0.1
	*/
	public function get_value( $atts, $content = null ) {
		$this->user_atts    = shortcode_atts( $this->shortcode_atts, $atts );
		$this->user_content = $content;

		$term = $this->get_term( $this->user_atts['term_id'] );

		if ( null === $term ) {
			return '';
		}

		$out = $term->term_id;

		apply_filters( 'wpv_shortcode_debug', self::SHORTCODE_NAME, json_encode( $this->user_atts ), '', 'Data received from cache.', $out );

		return $out;
	}

}
Page Not Found
Parece que el enlace que apuntaba aquí no sirve. ¿Quieres probar con una búsqueda?
¡Hola!