/** * Process Smart Tags inside HTML / Code Block form fields. * * @link https://wpforms.com/developers/how-to-process-smart-tags-in-html-fields/ */ function wpf_dev_html_process_smarttags( $properties, $field, $form_data ) { $properties[ ‘inputs’ ][ ‘primary’ ][ ‘code’ ] = apply_filters( ‘wpforms_process_smart_tags’, $properties[ ‘inputs’ ][ ‘primary’ ][ ‘code’…Continue reading
add_filter(‘the_generator’, ‘__return_empty_string’);Continue reading
add_filter( ‘login_errors’, function ( $error ) { // Edit the line below to customize the message. return ‘Something is wrong!’; } );Continue reading
google.com, pub-9567597566014925, DIRECT, f08c47fec0942fa0Continue reading
// Crea un endpoint REST API personalizado en WordPress add_action(‘rest_api_init’, function () { error_log(“Registro de endpoint ejecutado.”); // Para depuración register_rest_route(‘push/v1’, ‘/save-push-token/’, array( ‘methods’ => ‘POST’, ‘callback’ => ‘guardar_push_token’, ‘permission_callback’ => ‘__return_true’ )); }); // Función para manejar la solicitud…Continue reading
function sby_videos_taxonomy() { register_taxonomy( ‘video_categories’, ‘sby_videos’, array( ‘hierarchical’ => true, ‘label’ => ‘Video Categories’, ‘query_var’ => true, ‘rewrite’ => array( ‘slug’ => ‘video-category’, ‘with_front’ => false ) ) ); } add_action( ‘init’, ‘sby_videos_taxonomy’);Continue reading
/** * Add a collection of radio selections to the donation form. * * This snippet only works in Charitable 1.5 or above. * */ function wpchar_charitable_register_new_radios_field() { if ( ! class_exists(“Charitable_Donation_Field” ) ) { return; }; /** * Define…Continue reading
// Enable automatic updates for WordPress core, plugins, and themes add_filter(‘automatic_updater_disabled’, ‘__return_false’); add_filter(‘auto_update_core’, ‘__return_true’); add_filter(‘auto_update_plugin’, ‘__return_true’); add_filter(‘auto_update_theme’, ‘__return_true’);Continue reading
add_filter(‘gutenberg_can_edit_post’, ‘__return_false’, 5); add_filter(‘use_block_editor_for_post’, ‘__return_false’, 5);Continue reading
if ( ! defined( ‘AUTOSAVE_INTERVAL’ ) ) { // Change 5 to the number of minutes you want to use. define( ‘AUTOSAVE_INTERVAL’, 5 * MINUTE_IN_SECONDS ); }Continue reading