Please turn JavaScript on

Want to stay in touch with the latest updates from ? That's easy! Just subscribe clicking the Follow button below, choose topics or keywords for filtering if you want to, and we send the news to your inbox, to your phone via push notifications or we put them on your personal page here on follow.it.

Reading your RSS feed has never been easier!

Website title: WordPress Development Stack Exchange

Is this your feed? Claim it!

Publisher:  Unclaimed!
Message frequency:  49 / week

Message History

the pandemic has changed my role within my company so that I'm now doing all of our WordPress development, despite having zero training with WordPress. Feel free to include any comments about my boss' lack of wisdom if you like!

Anyway, what I'm trying to accomplish is to create a page that is password-protected. A visitor that knows the password can enter it and view...

Read full story

I am trying to perform the following query, which originates by the fact the post's 'date' and 'time' are entered as separate custom fields.

$args = array( 'post_type' => 'some_kind_of_posts', 'posts_per_page' => 3, 'orderby' => 'meta_value_num', 'meta_key' => strtotime('date'. ' ' .'time'), 'order' => 'DESC', 'meta_query' => array(...

Read full story

I'm having a truly maddening issue. It may involve plugins (or it may not, I don't know) but I believe it is sufficiently technical to be allowed here.

A few weeks ago, I needed to revert to a backup, and discovered my UpdraftPlus backup had stopped working a few weeks prior, complaining that wp_cron had been turned off.

After many hours, finally I tracked down ...

Read full story

I'm facing an issue when migrating a WordPress site from Namecheap hosting to Hostinger using the All in One WP Migration plugin. During the migration process, I encounter the following error message: "Error establishing a Redis connection."

Here are the key details and steps I've taken:

  • No Redis Configuration in wp-config.php: I ...
  • Read full story

    In the hook woocommerce_checkout_create_order_line_item I want to change the item metas in the checkout page for more than one quantity and now I need the variation price to calculate this.

    function wpler_add_quantities_to_order_items($item, $cart_item_key, $values, $order) { setlocale(LC_MONETARY, 'de_DE'); //$product = $values['data']; // Variation Product-Obje...

    Read full story