Your IP : 3.144.108.209


Current Path : /home/ncdcgo/public_html/wp-content/plugins backup/facetwp-alpha/
Upload File :
Current File : /home/ncdcgo/public_html/wp-content/plugins backup/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;
} );