PHP code example of johnbillion / wp-compat
1. Go to this page and download the library: Download johnbillion/wp-compat 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/ */
johnbillion / wp-compat example snippets
// @phpstan-ignore WPCompat.functionNotAvailable
wp_foo();
// @phpstan-ignore WPCompat.methodNotAvailable
WP::foo();
// @phpstan-ignore WPCompat.filterNotAvailable.filtername
add_filter( 'filter_name', 'callback' );
// @phpstan-ignore WPCompat.actionNotAvailable.myactionname
add_action( 'my_action_name', 'callback' );