/home/arranoyd/telegastro/wp-content/plugins/widget-context/widget-context.php
<?php
/**
 * Plugin Name: Widget Context
 * Plugin URI: https://widgetcontext.com
 * Description: Show or hide widgets depending on the section of the site that is being viewed.
 * Version: 1.2.0
 * Author: Kaspars Dambis
 * Author URI: https://widgetcontext.com
 * Text Domain: widget-context
 */

if ( file_exists( __DIR__ . '/vendor/autoload.php' ) ) {
	require_once __DIR__ . '/vendor/autoload.php';
}

$plugin = new Preseto\WidgetContext\Plugin( __FILE__ );
$widget_context = new WidgetContext( $plugin );

$widget_context->register_module( new WidgetContextCustomCptTax( $widget_context ) );
$widget_context->register_module( new WidgetContextWordCount( $widget_context ) );

$widget_context->init();