Limit the Number of Post Revisions
add_filter( ‘wp_revisions_to_keep’, function( $limit ) { // Limit to the last 10 revisions. Change 10 to whatever limit you want. return 10; } );Continue reading
Join 2,000,000+ Professionals who use WPCode to Future-Proof Their Websites!
add_filter( ‘wp_revisions_to_keep’, function( $limit ) { // Limit to the last 10 revisions. Change 10 to whatever limit you want. return 10; } );Continue reading
/** * AMP Form Proxy → Web3Forms (REST API version) * Snippet for: Code Snippets plugin * * Endpoint URL (use in amp-form action-xhr): * https://nirmako.com/wp-json/nirmako/v1/amp-form * * Handles AMP CORS preflight (OPTIONS) + POST correctly. */ add_action( ‘rest_api_init’, ‘nirmako_register_amp_form_route’…Continue reading
/** * NIRMAKO — Force canonical on all AMP pages → non-AMP URL * Protocol OAA compliance */ add_action( ‘wp_head’, ‘nirmako_amp_canonical_fix’, 0 ); function nirmako_amp_canonical_fix() { global $wp; $full_url = home_url( ‘/’ . trim( $wp->request, ‘/’ ) . ‘/’ );…Continue reading
/** * FFF – Captain Custom Edit Form * CLEAN FULL REWRITE * Use on page: [fff_captain_edit_form] */ if (!function_exists(‘fff_captain_get_request_listing_id’)) { function fff_captain_get_request_listing_id() { if (!empty($_GET[‘listing_id’])) { return absint($_GET[‘listing_id’]); } if (!empty($_GET[‘listing’])) { return absint($_GET[‘listing’]); } return 0; } }…Continue reading
/* ================================ NIRMAKO – Navigation + Mobile Hamburger (CSS only) Paste in: Elementor > Site Settings > Custom CSS or WP > Customize > Additional CSS ================================ */ /* 1) Make header/nav always clickable above hero/video/sections */ header, .site-header, .elementor-location-header,…Continue reading
/** * NIRMAKO — VideoObject Schema Injector * Protocol OA | Place in functions.php or Code Snippets plugin * ───────────────────────────────────────────────────────────── */ // ─── 1. Page → Video map ────────────────────────────────────────────────────── // format: ‘page-path’ => [ ‘videoId’, ‘uploadDate (from YT Studio)’, ‘duration…Continue reading
dd_action(‘rest_api_init’, function () { register_rest_route(‘chaport/v1’, ‘/lead’, array( ‘methods’ => ‘POST’, ‘callback’ => ‘handle_chaport_lead’, )); }); function handle_chaport_lead($request) { $params = $request->get_json_params(); $name = sanitize_text_field($params[‘name’] ?? ”); $email = sanitize_email($params[’email’] ?? ”); $phone = sanitize_text_field($params[‘phone’] ?? ”); $message = sanitize_textarea_field($params[‘message’] ??…Continue reading
/** * Litopia Social Planner — Complete WPCode Snippet * Shortcode: [litopia_my_social_planner_dashboard] * * Fully self-contained — creates its own DB tables on first run. * The plugin is NOT required. If the plugin’s tables already exist, they * are…Continue reading
/** * Cortex E-commerce Products SEO Meta API v1.0 * REST Endpoints for WooCommerce Product & Product Category SEO Data * * For meta titles, descriptions, excerpts (short descriptions), focus keywords, * and social meta on WooCommerce products and product…Continue reading
/** * Plugin Name: DF Divi 5 Alpha Order (Frontend Safe) * Description: Alphabetically sorts Divi 5 Blog Module items (including selected pages) using CSS ID. * Version: 2.0.0 * Author: David Frank */ if (!defined(‘ABSPATH’)) exit; add_action(‘wp_footer’, function ()…Continue reading