Desktop Start

Inklusive Arbeit – professionelle Leistung. Gemeinsam machen wir Vieles möglich. USE gGmbH Inklusives Arbeiten echo do_shortcode(“[metaslider id=7645]”); Produkte und DienstleistungenContinue reading

Desktop Start

Inklusive Arbeit – professionelle Leistung. Gemeinsam machen wir Vieles möglich. USE gGmbH Inklusives Arbeiten echo do_shortcode(“[metaslider id=7645]”); Produkte und DienstleistungenContinue reading

Desktop Start

Inklusive Arbeit – professionelle Leistung. Gemeinsam machen wir Vieles möglich. USE gGmbH Inklusives Arbeiten hallo echo do_shortcode(“[metaslider id=7645]”); Produkte und DienstleistungenContinue reading

News title Character Limit

function truncate_html($html, $maxLength) { // Return early if the initial string is shorter than the maxLength if (strlen($html) loadHTML(mb_convert_encoding($html, ‘HTML-ENTITIES’, ‘UTF-8’), LIBXML_HTML_NOIMPLIED | LIBXML_HTML_NODEFDTD); libxml_clear_errors(); // Use an XPath query to select all text nodes $xpath = new DOMXPath($dom); $textNodes…Continue reading

to do list working

/** * Plugin Name: Shop Manager To-Do List * Description: Adds a custom to-do list feature for shop managers in the WordPress admin. * Version: 1.0 * Author: Your Name */ // Register custom post type for To-Dos function create_todo_post_type()…Continue reading

Delete Expired Coupons

// Delete Expired Coupons that have an expiration date set and are not from AutomateWoo add_action(‘delete_expired_coupons_hook’, ‘delete_expired_coupons_action’); function delete_expired_coupons_action() { $query_args = [ ‘fields’ => ‘ids’, ‘post_type’ => ‘shop_coupon’, ‘post_status’ => ‘any’, ‘posts_per_page’ => -1, ‘orderby’ => ‘date’, ‘order’ =>…Continue reading

Loading custom templates

/** * Plugin Name: WPForms Custom Templates * Description: This plugin loads custom form templates. * Version: 1.0.0 */ /** * Load the templates. */ function wpf_load_custom_templates() { // Template code here } add_action( ‘wpforms_loaded’, ‘wpf_load_custom_templates’ );Continue reading