When you delete the Esquina Shortcodes Plugin through the WordPress admin interface, WordPress automatically runs the plugin’sDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/Jhon-mantila/pluging-wordpress/llms.txt
Use this file to discover all available pages before exploring further.
uninstall.php file before removing the plugin files. This routine deletes all of the plugin’s stored settings from the WordPress database, leaving your site clean with no orphaned options.
What happens on uninstall
Theuninstall.php routine calls delete_option() for each of the three option groups the plugin stores in the wp_options table:
| Option name | What it contains |
|---|---|
esquina_recomendaciones_settings | Recommendation widget settings |
esquina_youtube_settings | YouTube API key, Channel ID, and feed defaults |
esquina_facebook_settings | Facebook Page Access Token, Page ID, and feed defaults |
Uninstall steps
Deactivate the plugin
Go to WordPress → Plugins in your dashboard. Find Mis funciones in the list and click Deactivate. The plugin is now inactive but its files and database options still exist.
Confirm the deletion
WordPress will show a confirmation screen listing the plugin files that will be removed. Click Yes, delete these files and data to confirm.
What is removed
- All plugin admin settings stored in the WordPress database (
wp_options), including:- Your YouTube API key and Channel ID
- Your Facebook Page Access Token and Page ID
- All recommendation widget settings
- All feed defaults (max, columns, batch, limit, per_page)
Save your YouTube API key and Facebook Page Access Token somewhere safe before uninstalling. Once the plugin is deleted, these values are permanently removed from the database. If you reinstall the plugin later, you will need to re-enter them.
What is NOT removed
Transient caches
WordPress transients created by the plugin (cached API results and session data) are not deleted byuninstall.php. They will expire on their own according to their TTL (12 hours for YouTube results, 5 minutes for Facebook results, 24 hours for playlist IDs, 1 hour for session data). If you want to remove them immediately, use WP-CLI:
wp_options with your actual table name if you use a custom database prefix.
Shortcodes in post content
Removing the plugin does not clean up shortcode tags embedded in your posts or pages. After the plugin is deleted, shortcode tags such as[youtube_largo …], [youtube_shorts …], [facebook_posts …], [categorias_grid], [category_post_count …], and [ultimas_entradas] will appear as plain, unprocessed text on the front end.
To prevent this, search for and remove shortcode tags from your post content before uninstalling the plugin. You can do this manually in the post editor, or use a database search-and-replace tool such as WP-CLI:
Installation
How to install or reinstall the Esquina Shortcodes Plugin.
Configuration
How to configure the plugin settings after installation.
YouTube API Setup
Re-obtain and configure your YouTube API key after reinstalling.
Facebook API Setup
Re-obtain and configure your Facebook Page Access Token after reinstalling.