Freshly Pressed is back, and Jetpack decides if you qualify

I thought human-curated discovery was dead, buried under engagement-obsessed algorithmic feeds. Then WordPress.com announced that Freshly Pressed WordPress is back. If you have been building on this platform since the 4.x days, you know what that used to mean. Freshly Pressed was the “front page of the internet” for bloggers before Reddit took over that job.

The web right now is choked with SEO hackery and AI-generated filler, so a swing back to human curation changes how discovery works. It also matters if you run a self-hosted site and have already filed this under “WordPress.com thing.” It reaches self-hosted sites too, and the reason is technical.

Why Freshly Pressed beats the algorithm

Most discovery engines run on engagement signals: likes, shares, fast comments. That leaves a bottleneck where only viral content survives, usually at the cost of technical depth or decent storytelling. Freshly Pressed WordPress runs on different logic. People read the posts and pick the ones with humor, originality and a strong point of view.

For a developer or a business owner that is worth a lot. You are not guessing at a shadow ban or working out whether a post flopped because you missed one keyword. Good writing gets a shot. There is a technical catch for self-hosted installs though.

Can the curators actually see your site?

Off WordPress.com, you need the Jetpack plugin to be eligible at all. Curators pull from the WordPress.com Reader ecosystem, and the Jetpack connection is the bridge into it. Your site has to be syncing its posts through the REST API to the WordPress.com infrastructure.

I have lost count of the sites where the Jetpack connection reads as “active” while the sync fails quietly, usually a transient error or a server firewall blocking the XML-RPC or REST API endpoints. No sync, no posts in the Reader, and nobody curating ever sees your masterpiece.

<?php
/**
 * Quick check to see if your site is actually talking to the Jetpack shadows.
 * Prefix: bbioon_
 */
function bbioon_check_discovery_readiness() {
    if ( ! class_exists( 'Jetpack' ) ) {
        return 'Jetpack is missing. No Freshly Pressed for you.';
    }

    if ( ! Jetpack::is_active() ) {
        return 'Connection is dead. Curators can\'t see you.';
    }

    // Check if the site is in "Publicize" mode or private
    if ( get_option( 'blog_public' ) == '0' ) {
        return 'Your site is set to private. Discovery is disabled.';
    }

    return 'You are in the running. Go write something great.';
}
?>

What this changes about your content strategy

Put the trending metrics down for a minute. Freshly Pressed WordPress coming back points at quality again. When I mentor junior devs I tell them the same thing every time: “Code for the machine, but write for the human.” This is that idea applied to publishing. The featured work sits on the official Discover page.

You can also pipe the curated feeds into your own site or reader over RSS. Human curation gives you a slower, more deliberate stream, one that has not been flattened into a neural network’s version of “relevance.”

If Freshly Pressed or a flaky Jetpack sync is eating your dev hours, hand it to me. I have been wrestling with WordPress since the 4.x days.

Where that leaves human curation

Freshly Pressed coming back says the WordPress ecosystem still cares about the “web of people.” Hobby blog or high-traffic publication, the job is the same: get the presentation and the story right, keep the Jetpack bridge solid, and publish. There are people reading again.

author avatar
Ahmad Wael
I'm a WordPress and WooCommerce developer with 15+ years of experience building custom e-commerce solutions and plugins. I specialize in PHP development, following WordPress coding standards to deliver clean, maintainable code. Currently, I'm exploring AI and e-commerce by building multi-agent systems and SaaS products that integrate technologies like Google Gemini API with WordPress platforms, approaching every project with a commitment to performance, security, and exceptional user experience.