| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/ict/wp-content/plugins/so-widgets-bundle/widgets/taxonomy/ |
Upload File : |
<?php
/*
Widget Name: Taxonomy
Description: Displays the selected taxonomy for the current post.
Author: SiteOrigin
Author URI: https://siteorigin.com
Documentation: https://siteorigin.com/widgets-bundle/taxonomy-widget/
*/
class SiteOrigin_Widget_Taxonomy_Widget extends SiteOrigin_Widget {
public function __construct() {
parent::__construct(
'sow-taxonomy',
__( 'SiteOrigin Taxonomy', 'so-widgets-bundle' ),
array(
'description' => __( 'Displays the selected taxonomy for the current post.', 'so-widgets-bundle' ),
'help' => 'https://siteorigin.com/widgets-bundle/taxonomy-widget/',
),
array(),
false,
plugin_dir_path( __FILE__ )
);
}
public function get_widget_form() {
// Gets taxonomy objects and extracts the 'label' field from each one.
$taxonomies = wp_list_pluck( get_taxonomies( array(), 'objects' ), 'label' );
return array(
'title' => array(
'type' => 'text',
'label' => __( 'Title', 'so-widgets-bundle' ),
),
'taxonomy' => array(
'type' => 'select',
'label' => __( 'Taxonomies', 'so-widgets-bundle' ),
'options' => $taxonomies,
),
'label' => array(
'type' => 'text',
'label' => __( 'Label', 'so-widgets-bundle' ),
),
'display_format' => array(
'type' => 'select',
'label' => __( 'Display as', 'so-widgets-bundle' ),
'options' => array(
'link' => __( 'Links', 'so-widgets-bundle' ),
'button' => __( 'Buttons', 'so-widgets-bundle' ),
'text' => __( 'Text', 'so-widgets-bundle' ),
),
),
'color' => array(
'type' => 'color',
'label' => __( 'Color', 'so-widgets-bundle' ),
),
'hover_color' => array(
'type' => 'color',
'label' => __( 'Hover color', 'so-widgets-bundle' ),
),
'new_window' => array(
'type' => 'checkbox',
'default' => false,
'label' => __( 'Open in a new window', 'so-widgets-bundle' ),
),
);
}
public function get_less_variables( $instance ) {
if ( empty( $instance ) ) {
return array();
}
return array(
'color' => $instance['color'],
'has_color' => empty( $instance['color'] ) ? 'false' : 'true',
'hover_color' => $instance['hover_color'],
'has_hover_color' => empty( $instance['hover_color'] ) ? 'false' : 'true',
);
}
/**
* Get the template variables for the taxonomy
*
* @return array
*/
public function get_template_variables( $instance, $args ) {
if ( empty( $instance ) ) {
return array();
}
return array(
'title' => $instance['title'],
'taxonomy_name' => $instance['taxonomy'],
'label' => $instance['label'],
'display_format' => $instance['display_format'],
'new_window' => $instance['new_window'],
);
}
}
siteorigin_widget_register( 'sow-taxonomy', __FILE__, 'SiteOrigin_Widget_Taxonomy_Widget' );