Current Path : /home/ncdcgo/public_html/wp-content/plugins/facetwp-alpha/ |
Current File : /home/ncdcgo/public_html/wp-content/plugins/facetwp-alpha/index.php |
<?php /* Plugin Name: FacetWP - A-Z Listing Description: Filter by first letter Version: 1.3.9 Author: FacetWP, LLC Author URI: https://facetwp.com/ GitHub URI: facetwp/facetwp-alpha */ defined( 'ABSPATH' ) or exit; define( 'FACETWP_ALPHA_VERSION', '1.3.9' ); /** * FacetWP registration hook */ add_filter( 'facetwp_facet_types', function( $types ) { include( dirname( __FILE__ ) . '/class-alpha.php' ); $types['alpha'] = new FacetWP_Facet_Alpha_Addon(); return $types; } );