webdezy
Forum Replies Created
-
Forum: Plugins
In reply to: [Cyr-To-Lat] 5.5.0 – не работает при вызове sanitize_title()Ага, спасибо, здесь вы правы пожалуй, я не шибко эксперт в ООП)
Forum: Plugins
In reply to: [Cyr-To-Lat] 5.5.0 – не работает при вызове sanitize_title()Мда, такое себе решение конечно. Получается, что на сайтах, где раньше это могло использоваться, сейчас могут вылезти какие-нить косяки, т.к. санитайзинг этот не работает, собственно с чем я и столкнулся.
Тогда уж кастомную функцию использовать типа такого:function webdezy_sanitize_title( $title ) { if ( class_exists( 'Cyr_To_Lat\Main' ) ) { $cyr_to_lat = new Cyr_To_Lat\Main(); $title = sanitize_title_with_dashes( $cyr_to_lat->transliterate( $title ) ); } return $title; }
Но такой вариант вещей мне вообще не нравится, задумался о более простых альтернативах вашего плагина =(
Forum: Plugins
In reply to: [Yoast SEO] Remove Zapier notice on posts and productsAdd to functions.php
/** * Remove Yoast Zapier notice */ add_action( 'init', 'webdezy_remove_yoast_zapier_free_publishbox_text' ); function webdezy_remove_yoast_zapier_free_publishbox_text() { if ( class_exists( 'Yoast\WP\SEO\Integrations\Third_Party\Zapier_Free' ) ) { $zapier_free = YoastSEO()->classes->get( Yoast\WP\SEO\Integrations\Third_Party\Zapier_Free::class ); remove_action( 'wpseo_publishbox_misc_actions', [ $zapier_free, 'add_publishbox_text' ] ); } }
Forum: Plugins
In reply to: [Browser Screenshots] Screenshot creation errorI also noticed that the service stopped working
They may have changed their domain to wp.com because
https://s0.wp.com/mshots/v1 worksForum: Plugins
In reply to: [Prismatic] plugin-copy-clipboard loading from external cloudflareYes, it’s the same
Forum: Plugins
In reply to: [Prismatic] plugin-copy-clipboard loading from external cloudflareAnd also clipboard.js is included in the core of WordPress.
wp_enqueue_script( 'clipboard' );
Forum: Plugins
In reply to: [Prismatic] plugin-copy-clipboard loading from external cloudflareclipboard.js – dependency for plugin-copy-clipboard.js
you can enqueue clipboard.min.js before plugin-copy-clipboard.js and it will not be loaded from CDNadd_action( 'wp_enqueue_scripts', 'enqueue_clipboard_js', 0 ); function enqueue_clipboard_js(){ wp_enqueue_script( 'clipboard-js', get_template_directory_uri() . '/js/clipboard.min.js' ); }