Today I was building a list of links on a WordPress site using wp_list_bookmarks. I wanted to create a comma-separated list such that each link title would have a link after it. No problem.
Except….the final link also has a comma after it. The result looks like this:
link 1, link 2, link 3, link 4,
I want it to look like this (with no trailing comma):
link 1, link 2, link 3, link 4
To accomplish this, I used a few php functions as follows:
'',
'after' => ', ',
'echo' => '0';
?>
Notice that in the $args array, I add a comma after each link. Then in the final echo line, I remove the trailing comma.
Pretty cool, eh!
Do you know of a better way to do this?
SOURCE: I found this solution on the WordPress.org forums, but I lost the link. Sorry!
More posts from themightymo.com
How to fix the “Warning: Class ‘Automattic\WooCommerce\StoreApi\Routes” issue in WordPress + WooCommerce
Today when I visited a customer’s website, I saw an error similar to this: etc. After trying all sorts of troubleshooting, the solution ended up being simple. Download a fresh copy of WooCommerce from WordPress.org and FTP it up to the server, replacing the existing WooCommerce files. Problem solved. Isn’t that nice? Many thanks to…
How to CSS rainbow text
Here’s a bit of plain CSS that’ll create rainbow text on your WordPress site or anywhere, really.
How to Restore a Deleted Amazon S3 Bucket
I ran into a rather serious issue recently: a human on my team (me) intentionally (but accidentally) deleted an Amazon S3 bucket that was serving files to a WordPress site. The solution to the problem follows: Cry when you realize you cannot restore a deleted S3 bucket. Search your computer, your co-workers’ computers, your former…