PHP code example of fusible / wp-view
1. Go to this page and download the library: Download fusible/wp-view 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/ */
fusible / wp-view example snippets
// plugin
/**
* Plugin Name: Fusible View
* Plugin URI: https://github.com/fusible/fusible.wp-view/
* Description: Aura View for WP
* Version: 1.0.0
* Author: Jake Johns
* Author URI: http://jakejohns.new/
* License: MIT License
*/
namespace Fusible\WpView;
if (!is_blog_installed()) {
return;
}
(new Container)->getRender()->register();