Converting Windows line endings to UNIX
Especially in the case of writing shell scripts. It’s imperative to move from CRLF (Win) to LF (*nix) so they will run.
Try this:
$ dos2unix FILE_NAME.EXT
if that doesn’t work, then try this.
$ sed -i 's/\r$//' FILE_NAME.EXT
Also, make sure you’ve set the permission bits so they can execute.
$ chmod 770 FILE_NAME.EXTPublished on September 3, 2024
Issue with register_post_type with custom capability type(s)
I have a plugin for a site that creates multiple custom post types (CPT). Each with their own custom capability specified via the capability_type
attribute of the register_post_type()
function. I copy-and-pasted the code block for each register_post_type()
from the first one, which includes the capability_type
as an array, ie. array('type' , 'types')
. Some of the subsequent CPT didn’t need multiple capability types so I was receiving the warning ‘Notice: Undefined offset: 1 in post.php’ due to a single item in the array. The fix was to remove the array wrapping the single value, et voila, no more warning.
Disable New User Notification Emails in WordPress
I use this when doing bulk imports of users in dev environments.
add_filter( 'wp_new_user_notification_email', '__return_false', 10, 3 );
Add that to functions.php
and you’re set. Users will not be notified.
Delete post revisions in WordPress with wp-cli
Easily remove revisions using wp-cli. First, get a list of revisions with:
$ wp post list --post_type='revision' --format=ids
This command will provide a list of revisions by post ID.
To remove those revisions, use to following command:
$ wp post delete $(wp post list --post_type='revision' --format=ids) --force
This command will provide feedback to stdout as Success: Deleted post XXX.
Where XXX is the post ID of the deleted post. The --force
flag may not be necessary, but was in my case since the command failed with the warning: Warning: Posts of type 'revision' do not support being sent to trash.
Me on a bike (Winter/Spring 2023)
CES Northstar Enduro – Truckee, CA
SET Redemption Enduro – Eureka Springs, AR
SET O’Rock Enduro – Ouachita National Forest, OK
SET Dino Enduro – Dinosaur State Park, Glen Rose, TX
SET Return of the Zombie Goat Enduro – Flat Rock Ranch, Comfort, TX
Published on January 24, 2023Me on a bike (Fall 2022)
TTP TEXAS ENDURO CUP – Spider Mountain, Burnet, TX
TTP TEXAS ENDURO CUP – Reveille Peak Ranch, Burnet, TX
Published on October 31, 2022More Yard Birds
More birds that have hatched and/or fledged in my yard.
Great Horned Owls
Published on March 21, 2022Change WordPress user ID
This is usually needed in order to secure the default admin user which has a user_id of 1.
Run these two mysql queries via your favorite interface.
UPDATE wp_users SET ID = 666 WHERE ID = 1;
then…
UPDATE wp_usermeta SET user_id = 666 WHERE user_id = 1;
Please note: you can use any number you want for the user_id as long as it doesn’t correspond to that of an existing user. I just chose the most metal user_id for this example. 🤘.
Published on February 24, 2022Me on a bike (2022 Season)
Return of the Zombie Goat Enduro – Flat Rock Ranch, Comfort, TX
Dino Enduro – Dinosaur State Park, Glen Rose, TX
Published on January 23, 20222021 Top Listens
-
Wilco
319 - Sturgill Simpson
279 - Paul Simon
278 - Wally Clark
249 - Steely Dan
225 - Sault
221 - Jazz Spastiks
220 - My Morning Jacket
220 - Band of Horses
210 - our Old Droog
197 - Benny the Butcher
196 - Yo La Tengo
184 - Michael Bublé
173 - Enzo Carella
172 - Ultramarine
165 - Burrito Brown
164 - MF DOOM
162 - Larry June
153 - Westside Gunn
148 - Miles Davis
146 - The Magnetic Fields
144 - Delvon Lamarr Organ Trio
142 - Always Proper
139 - Berner
139 - White Denim
139 - The Shins
133 - Emma-Jean Thackray
127 - Richard “Groove” Holmes
127 - Modest Mouse
126 - David Bowie
125 - PUP
123 - Richard Swift
120 - Lucky Brown
115 - Moses Boyd
115 - emune
113
- Kurt Vile
112
- Mocky
107
- Adrian Younge
105
- Conway the Machine
105
- Nick Drake
104
- Built to Spill
103
- Wun Two
102
- Bruno Pernadas
100
- Fleet Foxes
99
- Hot Snakes
99
- Rhye
98
- Theon Cross
97
- Bright Eyes
96
- Ted Hawkins
95
- The Deli
95