This Week in WordPress #364 https://wpbuilds.com/2026/02/03/this-week-in-wordpress-364/ #WordPress #wpmisc
Managing multiple client sites often means juggling local setups, updates, and changes across different environments.It works — until the workflow starts getting in your way.
#WordPress #Tools #WordPresscom #WordPressStudio
https://ift.tt/oYSFm8U
Figuring out how to do something fancy with WordPress comments I’ll never authorise:
On a blog of mine, I have a bunch of comments that are quite advanced spam. I keep them (unpublished) so I can track what the spammer is up to.
What I am currently trying to work out is how to save the comments so they are easy to look up later, but get them out of the pending queue without dropping them into the spam or trash.
The problem is that WordPress offers no hooks for doing any of that. Comment statuses are hard-coded and cannot be extended.
Does anyone have any ideas?
#comments #WordPressLearn to build a smooth word-switching effect in WordPress by combining four key APIs: HTML API for markup transformation, Interactivity API for animations, Format API for editor controls, and JavaScript[…]
#WordPress #Dev #blocks #FormatAPI #HTMLAPI #InteractivityAPI
https://ift.tt/RFcywXi
Cafe WordPress theme https://visualmodo.com/theme/cafe-wordpress-theme/ The perfect ingredient for a website perfection. Made for every café restaurant or bar, is packed with an amazing set of layouts and elements ☕️👩🍳🥧🍞🥪 #wordpress #theme #templates #coffee #shop #webdesign #restaurant #cafe
With the move to more JavaScript and Styles in WordPress admin pages and editors, I spend some time debugging what styles and scripts are being loaded on a given page.
#WordPress #Dev #Tools #debugging
https://ift.tt/dbPmrqN
FlowMattic 5.5.0 introduces new Horizontal Workflow Builder 👉 https://lttr.ai/AnwrG #WordPress #automation

Qu’en pensez-vous de la page que j’ai créée ? https://tozounoir.zouluvo.com/quen-pensez-vous-de-la-page-que-jai-creee/
#webhosting #websitecreation #internetwebsite #domainname #affiliate #hostingdiscount #webserver #siteperformance #loadingspeed #websecurity #sslcertificate #wordpress #onlinestore #personalblog #webentrepreneur #digitalproject #moneysaving #passiveincome #affiliatemarketing #onlinework #onlineadvertising #seomarketing #siteoptimization #webtools #reliablehosting #websolution #sitemanagement #webdevelopment

@nerdevil Peccato non si veda il pattern! Guarda qui nel fediverso sono più o meno tutti esperti di @wordpressdotcom visto che si puó federare tramite il magnifico plugin creato da @pfefferle
Personalmente dissentisco sul fatto sia difficile aggiungere l’icona. Ho trovato un sito web che ti spiega tramite video come fare. É piuttosto semplice: https://herve.bzh/how-to-add-a-mastodon-icon-to-your-wordpress-site/
Fatemi sapere se vi serve una mano. Sarei super felice di aiutarvi!
Everything you need to know about WooCommerce hooks, actions and filters, on the single product page template - visual guide and sample code
#WordPress #Dev #WooCommerce
https://ift.tt/JNe2EvC
Enterprise WordPress Plugins vs. Community Solutions: Why the Source Matters https://webdevstudios.com/2026/01/20/enterprise-wordpress-plugins-vs-community-solutions-why-the-source-matters/ #WordPress #wpdev
Auf einigen Websites würde ich ActivityPub gerne einen festen Hashtag mit auf den Weg geben, der auf der Website selbst nicht sinnvoll wäre.
So ist für einen Beitrag auf einstieg-in-wp.de ist der Hashtag #WordPress komplett überflüssig. Im Fediverse hingegen wäre er durchaus sinnvoll.
Der folgende Code für die functions.php funktioniert:
add_filter( 'activitypub_the_content', function( $content ) {
return $content . ' #WordPress';
}, 10 );
Ist dieses PHP okay? Sinnvoll? Gefährlich?