Skip to content

Instantly share code, notes, and snippets.

@alanef
Created June 27, 2023 16:24
Show Gist options
  • Save alanef/99b412b6a16dff8c767e5c3da0b6e0f4 to your computer and use it in GitHub Desktop.
Save alanef/99b412b6a16dff8c767e5c3da0b6e0f4 to your computer and use it in GitHub Desktop.
<?php
/*
* Plugin Name: count
*/
add_shortcode( 'count_wfea_transients', function() {
$trans= get_option('wfea_transients');
return 'trans: ' . count($trans);
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment