Skip to content

How can I call a WordPress shortcode within a template?

There’s a plugin for the Contact us form. To activate the form, all you have to do is to place [CONTACT-US-FORM] in the page… My page is calling a page template. Is it possible to add the [CONTACT-US-FORM] shortcode in the PHP template? I tried it and it did not work. The WordPress page worked, bu…

Get WordPress Featured Image “alt”

I’m trying to get a page’s featured image alt and echo it as paragraph text but my code doesn’t seem to be working. I’m currently able to echo the image and it’s working perfectly. Here’s the code I’…

Regex to match a slug?

I’m having trouble creating a Regex to match URL slugs (basically, alphanumeric “words” separated by single dashes) this-is-an-example I’ve come up with this Regex: /[a-z0-9-]+$/ and while it …