Search
265 results for “shawnhooper”
-
-
Turning Off the AI Features in WordPress 7.0
WordPress 7.0 shipped this month, with a focus on adding AI features into the core of the platform.
If you don’t want these features, here are some ways to turn them off:
Method 1: wp-config constant
You can add the WP_AI_SUPPORT constant to your wp-config.php file:
define( ‘WP_AI_SUPPORT’, false );
This is the most secure option.
Method 2: Using a plugin
Install and activate the Turn […]
https://shawnhooper.ca/2026/05/28/disable-wordpress-ai-core/ #AI #privacy #security -
@josephdickson @shawnhooper Just to bring an quick and unsolicited recommendation: https://wiby.me is an absolute treasure trove regarding the old web - also perfectly useable with #dillo or other rather simple browsers!
-
Joining the Board
Last night was as elected to the Board the Russell Association for the Performing Arts.
https://shawnhooper.ca/2026/02/26/joining-the-board/ #RAPA -
Customizing the New Admin Email Confirmation in WordPress
How to use WordPress filters to modify the contents of the email that is sent out when the site’s admin email is changed in the WordPress admin dashboard.
https://shawnhooper.ca/2024/04/02/wordpress-customizing-new-admin-email/
-
@WinstonSmith @shawnhooper @wisearts has anyone mentioned #audacious already? It has been my favorite music player for #linux since the #xmms deprecation
-
@WinstonSmith @shawnhooper @wisearts has anyone mentioned #audacious already? It has been my favorite music player for #linux since the #xmms deprecation
-
@WinstonSmith @shawnhooper @wisearts has anyone mentioned #audacious already? It has been my favorite music player for #linux since the #xmms deprecation
-
@WinstonSmith @shawnhooper @wisearts has anyone mentioned #audacious already? It has been my favorite music player for #linux since the #xmms deprecation
-
@WinstonSmith @shawnhooper @wisearts has anyone mentioned #audacious already? It has been my favorite music player for #linux since the #xmms deprecation
-
Okay, so anyone know a good tool for importing your #twitter archive to #Wordpress via the #wordpresss #xmlrpc or #REST api? I loved the idea of @shawnhooper's tool, but putting on #DreamHost & running it via command line times out cos my archive is too big and the format is not great for me. (haven't found a good theme that will format tweets)
I would love a tool that allows me to run it remotely from terminal in my macos with my data local and feeds it into a remote wordpress installation.
-
Okay, so anyone know a good tool for importing your #twitter archive to #Wordpress via the #wordpresss #xmlrpc or #REST api? I loved the idea of @shawnhooper's tool, but putting on #DreamHost & running it via command line times out cos my archive is too big and the format is not great for me. (haven't found a good theme that will format tweets)
I would love a tool that allows me to run it remotely from terminal in my macos with my data local and feeds it into a remote wordpress installation.
-
Okay, so anyone know a good tool for importing your #twitter archive to #Wordpress via the #wordpresss #xmlrpc or #REST api? I loved the idea of @shawnhooper's tool, but putting on #DreamHost & running it via command line times out cos my archive is too big and the format is not great for me. (haven't found a good theme that will format tweets)
I would love a tool that allows me to run it remotely from terminal in my macos with my data local and feeds it into a remote wordpress installation.
-
Okay, so anyone know a good tool for importing your #twitter archive to #Wordpress via the #wordpresss #xmlrpc or #REST api? I loved the idea of @shawnhooper's tool, but putting on #DreamHost & running it via command line times out cos my archive is too big and the format is not great for me. (haven't found a good theme that will format tweets)
I would love a tool that allows me to run it remotely from terminal in my macos with my data local and feeds it into a remote wordpress installation.
-
Okay, so anyone know a good tool for importing your #twitter archive to #Wordpress via the #wordpresss #xmlrpc or #REST api? I loved the idea of @shawnhooper's tool, but putting on #DreamHost & running it via command line times out cos my archive is too big and the format is not great for me. (haven't found a good theme that will format tweets)
I would love a tool that allows me to run it remotely from terminal in my macos with my data local and feeds it into a remote wordpress installation.
-
For those of you who work in live production.
https://superproductionquest.com/
This is hilarious. Reminds me of all the old text-based PC games I played back when I had free time, before working in production.
-
Showering at the hotel.
Have never noticed in French that conditioner is “Après-Shampoing”
(After shampooing)
-
There go the fireworks. #VictoriaDay #May24
-
That's a wrap for "A Year in the Death of Eddie Jester".
Had a great time working with this cast and crew.
-
I could go to bed.... or I could watch #DavidGuetta on the #Tomorrow livestream.
-
For those of you who work in live production.
https://superproductionquest.com/
This is hilarious. Reminds me of all the old text-based PC games I played back when I had free time, before working in production.
-
For those of you who work in live production.
https://superproductionquest.com/
This is hilarious. Reminds me of all the old text-based PC games I played back when I had free time, before working in production.
-
For those of you who work in live production.
https://superproductionquest.com/
This is hilarious. Reminds me of all the old text-based PC games I played back when I had free time, before working in production.
-
For those of you who work in live production.
https://superproductionquest.com/
This is hilarious. Reminds me of all the old text-based PC games I played back when I had free time, before working in production.
-
I just found 20 years worth of manually tagged images! I thought the tagging had been lost to the gods of software past.
People names, places, event names, all back.
So happy!!!
-
Using WP-CLI to Delete Posts Containing a Specific Metadata Value
I was doing some maintenance on a WordPress site for a client, and for very specific reasons, I had to use non-interactive WP-CLI commands to do anything on this site.
What I wanted to do
Delete all pages that contained a custom postmeta key and value.
For the sake of this example, I wanted to delete:
- Post Type: Only “page” types
- Containing the “_mykey” custom meta key with the value “value1”
Solution
Verify the posts that are going to be deleted first
It’s always advisable to double check what you’re going to delete first. The “measure twice, cut once” one database management.
wp post list --meta_key="_mykey" --fields="ID" --format=ids --post_type=page --meta_value="value1"
Delete the DataNow that you’ve confirmed what you’re going to delete is correct, you can proceed.
wp post delete $(wp post list --meta_key="_mykey" --fields="ID" --format=ids --post_type=page --meta_value="value1")For an added measure of safety, this only moves the posts into the trash. If you wanted to permanently delete them, add the
--forceflag to the delete command,wp post delete $(wp post list --meta_key="_mykey" --fields="ID" --format=ids --post_type=page --meta_value="value1") --forceBonus
If you want to delete the posts that contain the “_mykey”
meta_key, regardless of what the value is inmeta_value,
#WPCLIwp post delete $(wp post list --meta_key="_mykey" --fields="ID" --format=ids --post_type=page) --force -
-
I thought today’s show was going really fast.
The clock on the mixer hasn’t been adjusted for DST.
-
Time to make things loud in here. #liveaudio #dance #theatre
-
Ah crap. I was just introduced to a new software protocol that would allow me to solve a lot of problems in the theatre.
https://en.wikipedia.org/wiki/Open_Sound_Control
Down the rabbit hole I go....