PHP code example of khromov / wp-vc-template-manager
1. Go to this page and download the library: Download khromov/wp-vc-template-manager library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
khromov / wp-vc-template-manager example snippets
add_filter('vctm_template_locations', function($locations)
{
//Add custom plugin path location
$locations[] = plugin_dir_path( __FILE__ ) . 'my_templates/';
//Return
return $locations;
});
add_filter('vctm_textdomain', function($textdomain)
{
return 'my_custom_textdomain';
});
add_action('vctm_disable_builtin_templates', '__return_true');