Michael

Results 6 comments of Michael

I ran into the same issue but solved it by doing the following: ``` add_action( 'plugins_loaded', function () { include __DIR__ . '/includes/lazyblocks/goals.php'; // Add the block code into a...

I usually do it in a custom plugin.

Depends on the plugin complexity but for something small it generally looks like this: ``` // wp-content/plugins/my-custom-plugin/my-custom-plugin.php // lazyblocks PHP in: // wp-content/plugins/my-custom-plugin/includes/lazyblocks/goals.php

@Kuchiriel have you managed to get this one working? I have the same issue.

@Kuchiriel interesting, okay thanks for that!

@kaueDM did you ever manage to figure out a easy solution for pagination?