Skip to content

Instantly share code, notes, and snippets.

@bgrgicak
Created July 1, 2024 10:28
Show Gist options
  • Save bgrgicak/326aa07eb7bb58edc1c972f566c867a3 to your computer and use it in GitHub Desktop.
Save bgrgicak/326aa07eb7bb58edc1c972f566c867a3 to your computer and use it in GitHub Desktop.
<?php
/**
* Plugin Name: Fail
* Description: Throw an exception on init
* Version: 1.0
* Author: bgrgicak
* Author URI: https://bero.dev
*/
function fail_plugin_init() {
throw new Exception('This plugin is a failure');
}
add_action('init', 'fail_plugin_init');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment