0, 'y' => 10], ['x' => 1, 'y' => 20], ['x' => 2, 'y' => 15], ['x' => 3, 'y' => 25], ['x' => 4, 'y' => 30], ['x' => 5, 'y' => 40], ['x' => 6, 'y' => 45], ]); return ''; } function lcp_visualizer_block_init() { register_block_type( __DIR__ . '/build', array( 'render_callback' => 'render_lcp_visualizer_block', )); } add_action( 'init', 'lcp_visualizer_block_init' ); function enqueue_d3_js() { // Define the path to the D3.js file $d3_js_path = get_template_directory_uri() . '/includes/blocks/lcp-visualizer/assets/js/d3.v7.min.js'; // Enqueue the D3.js file wp_enqueue_script('d3-js', $d3_js_path, array(), null, false); } add_action('wp_enqueue_scripts', 'enqueue_d3_js');