PHP code example of idleberg / wordpress-vite-assets

1. Go to this page and download the library: Download idleberg/wordpress-vite-assets 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/ */

    

idleberg / wordpress-vite-assets example snippets


new Assets(string $manifestPath, string $baseUri, string $algorithm = "sha256");

// functions.php

use Idleberg\WordPress\ViteAssets\Assets;

$baseUrl = get_stylesheet_directory_uri();
$manifest = "path/to/manifest.json";
$entryPoint = "index.ts";

$viteAssets = new Assets($manifest, $baseUrl);
$viteAssets->inject($entryPoint);

// plugin.php

$viteAssets->inject("index.ts", [
	"action" => "admin_head"
]);

// functions.php

$viteAssets->inject("index.ts", [
	"priority" => [
		"scripts"  => 10,
		"preloads" => 0,
		"styles"   => 20
	]
]);