‏إظهار الرسائل ذات التسميات WordPress. إظهار كافة الرسائل
‏إظهار الرسائل ذات التسميات WordPress. إظهار كافة الرسائل

Cloudflare Launches EmDash as WordPress Alternative with Built‑In Security and Payments

Cloudflare Launches EmDash as WordPress Alternative with Built‑In Security and Payments

A new publishing platform called EmDash is positioning itself as the “spiritual successor to WordPress,” promising to retain the flexibility of plugins while eliminating the security risks that have long plagued the world’s most popular content management system.

Security concerns around WordPress plugins have grown in recent years, with reports of vulnerabilities affecting millions of sites. By addressing this pain point directly, EmDash aims to carve out a niche in a crowded market of CMS platforms, positioning itself as the next evolution in digital publishing.

WordPress powers over 40% of the Internet. It is a massive success that has enabled anyone to be a publisher, and created a global community of WordPress developers. But the WordPress open source project will be 24 years old this year. Hosting a website has changed dramatically during that time. When WordPress was born, AWS EC2 didn’t exist. In the intervening years, that task has gone from renting virtual private servers, to uploading a JavaScript bundle to a globally distributed network at virtually no cost. It’s time to upgrade the most popular CMS on the Internet to take advantage of this change.

EmDash is written entirely in TypeScript. It is serverless, but you can run it on your own hardware or any platform you choose. Plugins are securely sandboxed and can run in their own isolate, via Dynamic Workers, solving the fundamental security problem with the WordPress plugin architecture. And under the hood, EmDash is powered by Astro, the fastest web framework for content-driven websites.

EmDash is fully open source, MIT licensed, and available on GitHub. While EmDash aims to be compatible with WordPress functionality, no WordPress code was used to create EmDash. That allows us to license the open source project under the more permissive MIT license. We hope that allows more developers to adapt, extend, and participate in EmDash’s development.

EmDash is being pitched not just as another CMS, but as publishing infrastructure for the secure web. Its creators believe enterprises, media houses, and independent publishers will be drawn to a platform that combines scalability with peace of mind.

You can deploy the EmDash v0.1.0 preview to your own Cloudflare account, or to any Node.js server today as part of our early developer beta:

Or you can try out the admin interface here in the EmDash Playground:

Cloudflare Launches EmDash as WordPress Alternative with Built‑In Security and Payments

What WordPress has accomplished

The story of WordPress is a triumph of open source that enabled publishing at a scale never before seen. Few projects have had the same recognisable impact on the generation raised on the Internet. The contributors to WordPress’s core, and its many thousands of plugin and theme developers have built a platform that democratised publishing for millions; many lives and livelihoods being transformed by this ubiquitous software.

There will always be a place for WordPress, but there is also a lot more space for the world of content publishing to grow. A decade ago, people picking up a keyboard universally learned to publish their blogs with WordPress. Today it’s just as likely that person picks up Astro, or another TypeScript framework to learn and build with. The ecosystem needs an option that empowers a wide audience, in the same way it needed WordPress 23 years ago.

EmDash is committed to building on what WordPress created: an open source publishing stack that anyone can install and use at little cost, while fixing the core problems that WordPress cannot solve.

Solving the WordPress plugin security crisis

WordPress’ plugin architecture is fundamentally insecure. 96% of security issues for WordPress sites originate in plugins. In 2025, more high severity vulnerabilities were found in the WordPress ecosystem than the previous two years combined.

Why, after over two decades, is WordPress plugin security so problematic?

A WordPress plugin is a PHP script that hooks directly into WordPress to add or modify functionality. There is no isolation: a WordPress plugin has direct access to the WordPress site’s database and filesystem. When you install a WordPress plugin, you are trusting it with access to nearly everything, and trusting it to handle every malicious input or edge case perfectly.

EmDash solves this. In EmDash, each plugin runs in its own isolated sandbox: a Dynamic Worker. Rather than giving direct access to underlying data, EmDash provides the plugin with capabilities via bindings, based on what the plugin explicitly declares that it needs in its manifest. This security model has a strict guarantee: an EmDash plugin can only perform the actions explicitly declared in its manifest. You can know and trust upfront, before installing a plugin, exactly what you are granting it permission to do, similar to going through an OAuth flow and granting a 3rd party app a specific set of scoped permissions.

Cloudflare Launches EmDash as WordPress Alternative with Built‑In Security and Payments
For example, a plugin that sends an email after a content item gets saved looks like this: 
import { definePlugin } from "emdash";

export default () =>
definePlugin({
  id: "notify-on-publish",
  version: "1.0.0",
  capabilities: ["read:content", "email:send"],
  hooks: {
    "content:afterSave": async (event, ctx) => {
      if (event.collection !== "posts" || event.content.status !== "published") return;
      await ctx.email!.send({
        to: "editors@example.com",
        subject: `New post published: ${event.content.title}`,
        text: `"${event.content.title}" is now live.`,
      });
      ctx.log.info(`Notified editors about ${event.content.id}`);
    },
  },
});

This plugin explicitly requests two capabilities: content:afterSave to hook into the content lifecycle, and email:send to access the ctx.email function. It is impossible for the plugin to do anything other than use these capabilities.

Solving plugin security means solving marketplace lock-in

WordPress plugin security is such a real risk that WordPress.org manually reviews and approves each plugin in its marketplace. At the time of writing, that review queue is over 800 plugins long, and takes at least two weeks to traverse.

EmDash plugins have two important properties that mitigate this marketplace lock-in:
  • Plugins can have any license: they run independently of EmDash and share no code.
  • Plugin code runs independently in a secure sandbox: a plugin can be provided to an EmDash site, and trusted, without the EmDash site ever seeing the code.

Every EmDash site has x402 support built in — charge for access to content

x402 is an open, neutral standard for Internet-native payments. It lets anyone on the Internet easily charge, and any client pay on-demand, on a pay-per-use basis.

EmDash has built-in support for x402. This means anyone with an EmDash site can charge for access to their content without requiring subscriptions and with zero engineering work.

Solving scale-to-zero for WordPress hosting platforms

WordPress is not serverless: it requires provisioning and managing servers. EmDash is different: it’s built to run on serverless platforms, and make the most out of the v8 isolate architecture of Cloudflare’s open source runtime workerd.

EmDash is different: it’s built to run on serverless platforms, and make the most out of the v8 isolate architecture of Cloudflare’s open source runtime workerd. On an incoming request, the Workers runtime instantly spins up an isolate to execute code and serve a response. It scales back down to zero if there are no requests. And it only bills for CPU time (time spent doing actual work).

You can run EmDash anywhere, on any Node.js server — but on Cloudflare you can run millions of instances of EmDash using Cloudflare for Platforms that each instantly scale fully to zero or up to as many RPS as you need to handle, using the exact same network and runtime that the biggest websites in the world rely on.

Beyond cost optimizations and performance benefits, we’ve bet on this architecture at Cloudflare in part because we believe in having low cost and free tiers, and that everyone should be able to build websites that scale. We’re excited to help platforms extend the benefits of this architecture to their own customers, both big and small.

Modern frontend theming and architecture via Astro

EmDash is powered by Astro, the web framework for content-driven websites. To create an EmDash theme, you create an Astro project that includes:
  • Pages: Astro routes for rendering content (homepage, blog posts, archives, etc.)
  • Layouts: Shared HTML structure
  • Components: Reusable UI elements (navigation, cards, footers)
  • Styles: CSS or Tailwind configuration
  • A seed file: JSON that tells the CMS what content types and fields to create
This makes creating themes familiar to frontend developers who are increasingly choosing Astro, and to LLMs which are already trained on ASTRO.

WordPress themes, though incredibly flexible, operate with a lot of the same security risks as plugins, and the more popular and commonplace your theme, the more of a target it is. Themes run through integrating with functions.php which is an all-encompassing execution environment, enabling your theme to be both incredibly powerful and potentially dangerous. EmDash themes, as with dynamic plugins, turns this expectation on its head. Your theme can never perform database operations.

An AI Native CMS — MCP, CLI, and Skills for EmDash

EmDash is designed to be managed programmatically by your AI agents. It provides the context and the tools that your agents need, including Agent Skills, EmDash CLI, and a built-in MCP Server.

Pluggable authentication, with Passkeys by default

The least fun part about working with any CMS is doing the rote migration of content: finding and replacing strings, migrating custom fields from one format to another, renaming, reordering and moving things around. This is either boring repetitive work or requires one-off scripts and “single-use” plugins and tools that are usually neither fun to write nor to use.

EmDash is designed to be managed programmatically by your AI agents. It provides the context and the tools that your agents need, including:
  • Agent Skills: Each EmDash instance includes Agent Skills that describe to your agent the capabilities EmDash can provide to plugins, the hooks that can trigger plugins, guidance on how to structure a plugin, and even how to port legacy WordPress themes to EmDash natively. When you give an agent an EmDash codebase, EmDash provides everything the agent needs to be able to customize your site in the way you need.
  • EmDash CLI: The EmDash CLI enables your agent to interact programmatically with your local or remote instance of EmDash. You can upload media, search for content, create and manage schemas, and do the same set of things you can do in the Admin UI.
  • Built-in MCP Server: Every EmDash instance provides its own remote Model Context Protocol (MCP) server, allowing you to do the same set of things you can do in the Admin UI.

Pluggable authentication, with Passkeys by default

EmDash uses passkey-based authentication by default, meaning there are no passwords to leak and no brute-force vectors to defend against. User management includes familiar role-based access control out of the box: administrators, editors, authors, and contributors, each scoped strictly to the actions they need. Authentication is pluggable, so you can set EmDash up to work with your SSO provider, and automatically provision access based on IdP metadata.

Import your WordPress sites to EmDash

You can import an existing WordPress site by either going to WordPress admin and exporting a WXR file, or by installing the EmDash Exporter plugin on a WordPress site, which configures a secure endpoint that is only exposed to you, and protected by a WordPress Application Password you control. Migrating content takes just a few minutes, and automatically works to bring any attached media into EmDash’s media library.


Import your WordPress sites to EmDash

Try it

EmDash is v0.1.0 preview, and we’d love you to try it, give feedback, and we welcome contributions to the EmDash GitHub repository.

If you’re just playing around and want to first understand what’s possible — try out the admin interface in the EmDash Playground.

To create a new EmDash site locally, via the CLI, run:

npm create emdash@latest Or you can do the same via the Cloudflare dashboard below:
We’re excited to see what you build, and if you're active in the WordPress community, as a hosting platform, a plugin or theme author, or otherwise — we’d love to hear from you. Email us at emdash@cloudflare.com, and tell us what you’d like to see from the EmDash project.

If you want to stay up to date with major EmDash developments, you can leave your email address here.

Cloudflare's connectivity cloud protects entire corporate networks, helps customers build Internet-scale applications efficiently, accelerates any website or Internet application, wards off DDoS attacks, keeps hackers at bay, and can help you on your journey to Zero Trust.

Elementor Launches the First Centralized 'Mission Control' for Pro Website Design On WordPress


New breakthrough allows professional web creators to oversee and implement a design system thereby reducing design debt, eliminating inconsistencies and saving precious time





Elementor, the leading WordPress website building platform, announced today that with their new version 3.0 release, website designers can, for the first time, implement an advanced and comprehensive design system on WordPress sites.





Elementor's new functionality gives web design professionals the ability to view and control any web element on their sites from a centralized hub, thus streamlining the implementation of a design system. With it, users can now apply sitewide changes to overall layout, typography, color, style, images, logos, favicons, buttons, and form fields.





Implementing design system capabilities means advanced website builders can now cut through workflows, design and edit new and existing websites at lightning speeds, shortening time-to-market while maintaining brand and visual consistency.






https://www.youtube.com/watch?v=N8wiLAsuIZ4




With WordPress powering 38% of all websites on the internet - at 15 times the size of its closest competitor - this release brings a new way of designing websites to the largest web creation environment in the world. The new breakthrough rolled out by Elementor builds on the advantages provided by the open source platform including its flexibility, customization and adaptability to changing needs, and adds a new dimension to WordPress.





"Elementor V3.0 brings comprehensive design system capabilities to WordPress and allows website creators to build sites in ways previously not possible," said Yoni Luksenberg, CEO of Elementor. "By allowing users to spend less time on unnecessary legwork, they can shift focus to the important aspects of their design. With Elementor V3.0, we are providing our community not only with powerful features, but we are also enabling a new professional standard in a way that will revolutionize the workflow of web creators and designers."





About Elementor





Elementor is the leading website builder platform on WordPress. Serving over 5 million websites, Elementor's code-free, open-source platform, empowers web professionals including web developers, designers, and marketers in 152 markets. Elementor's mission is to radically simplify web building, enabling web professionals and agencies to unleash their creative and business potential. For more information visit www.elementor.com or follow us on Facebook.


WordPress Launches Tool for Remote Working


Automattic, the WordPress’s parent company, has recently launched its own internal remote-team collaboration tool, P2, to the public for the first time.

P2 organizes all files, projects, and conversations on one screen, so a team can collaborate from anywhere. It’s perfect for remote teams, digital nomads, extended families — anyone who doesn’t like email or meetings.

Interestingly, Automattic is itself an office-less, globally distributed company, and the company calls 'P'2 as is its lifeblood. "We built it to give everyone a place to see all of their projects and files, collaborate transparently, and to do it all without constant distractions, " said Matt Mullenweg, Founder of Auttomatic, who has long-held prediction that remote work is the future.


Currently in Beta stage, P2 runs on WordPress.com and allows Real-time messaging, creating secure internal teams, or collaborating with vendors and partners with a range of general privacy and user access options.

One can use P2 across multiple timezones for things like writing company-wide blog posts or acting as a 'virtual water cooler' to help teammates connect around the world.

Elementor Announces that 7% of All WordPress Sites are Now Built with its Platform

Elementor, the leading WordPress website builder platform, today announced that 7% of all WordPress websites are built using Elementor. Founded in 2016, Elementor's growth has continued to accelerate. While it took two years to reach its first million websites, this latest one million milestone took just over three months to achieve with over five million websites using its code-free, drag-n-drop platform. Major business and media sites including the New Yorker, TripAdvisor, Vogue, Crunchbase and GrubHub now use Elementor.

With the impact of the coronavirus forcing many businesses online, there has been a 32% increase in website building demand since the outbreak of the global pandemic in the US alone. The high adoption rate of Elementor is driving growth to the WordPress open-source movement, as over 30% of Elementor users are new to WordPress and are using it for the first time.

"Over a third of the websites in the world run on WordPress and Elementor is increasingly responsible for WordPress' dominance," says Elementor CEO, Yoni Luksenberg. "Our goal of enabling professional web creators to easily and painlessly build stunning websites according to their specific needs is being fulfilled as an amazing community has grown around our platform. Furthermore, to see that we are actually converting unaffiliated users to the WordPress community is very important to us as we become the de facto way for web creators to build WordPress websites."

In a move designed to support its users in a time of crisis, Elementor recently announced an early launch of its Experts network which empowers the members of its global community to capture the current high level of demand. Additionally, it enables them to collaborate and grow their businesses by sharing their portfolios and services with Elementor peers in 152 countries. The network has received strong early feedback from users all across the world who have already closed deals through connections made on the platform.

Another indicator of the appreciation that Elementor has received from the WordPress community was recently seen with its second straight championship win in the annual Torque Magazine Plugin Madness bracket. Elementor came out on top of a field of 64 nominated plugins (out of 55,000 WordPress plugins) winning 82% of the popular vote in the final round.

Elementor is the leading website builder platform on WordPress. Serving over 5 million websites, Elementor's code-free, open-source platform, empowers web professionals including web developers, designers, and marketers in 152 markets. Elementor's mission is to radically simplify web building, enabling web professionals and agencies to unleash their creative and business potential. For more information visit www.elementor.com or follow us on Facebook and YouTube.

Not Many Knows That WordPress Maker quietly Acquired The Rights To .blog In 2015

Bloggers all round the world trust Wordpress blindly. The platform has over the years been successful in amalgamating the passion of blogging with monetary compensation. Automattic, the company behind the world’s most popular publishing platform, Wordpress, is now trying to take blogging to a whole new level and make .blog a reality.

Automattic has recently secured the rights to operate and oversee the sale and registration of .blog domains. This action has been taken more than a year after the top-level domain went up for an auction and was sold to a mysterious buyer during the same.

According to the company's spokesperson, its subsidiary, Knock Knock Whois There LLC, has won the partnership rights with Primer Nivel, a company conceived to acquire top-level domains. Matt Mullenweg, CEO, Automattic, has revealed that buying the rights to run the domain has cost both the companies about $19 million. A report last year had predicted the deals cost at around $20 million.

Automattic is currently considering offering the domain to WordPress.com users, but not in an exclusive manner. According to the company, the .blog domain will be in fact made available to everyone, regardless of the fact whether they have a free or paid website or which hosting service they're availing.

WordPress.com owners will make the .Blog domains available to everyone by the end of 2016 after giving the first usage advantages to trademark owners in August and early applicants in October. If you're one of the interested buyers for the .blog domain, you can sign up for the same here.

You can sign up to be first in line to reserve a domain here.

WordPress To Enlighten 25 Percent Of The Web With HTTPS Encryption

Wordpress-2015-Security-Flaw-Vulnerability

Encryption has been a pervasive topic as of late, and for good reason. As the web becomes more crucial to our everyday lives, we begin to lose the sense of privacy we would otherwise have. Now WordPress, the world's largest  content management system that powers 25 percent of the web, has decided to join the revolt against unwanted surveillance.
It’s accomplishing this by giving free HTTPS to every custom domain featured on the site, which means not just improved security, but also higher rankings for WordPress users in Google search results.

WordPress.com is adding HTTPS support for all of its blogs. If you have a custom domain or a blog under the wordpress.com domain name (like abc.wordpress.com), you’re good to go.

While many social services like Facebook and Twitter have supported HTTPS for a while now, WordPress.com was still lagging behind for custom domain names.

The company notes that while WordPress.com subdomains have been encrypted since 2014, custom domains are finally being given the same treatment, bringing a quarter of all websites (including this one) up to par with Internet security standards.
Automatically, from here on out, every web page running on WordPress will automatically defer to an “https://” address, even if you type “http://” before the domain name in the address bar. A green lock icon in the address bar will indicate that your site is HTTPS-enabled, which should go into effect immediately. If you’re newly registering for a WordPress site, the company says you’ll receive the encryption update “within minutes.”

Thanks to the Let’s Encrypt project, it has become much cheaper and easier to implement HTTPS across the web. WordPress.com is taking advantage of this initiative for its websites. Each website now has an SSL certificate and will display a green lock in your address back.

What's your view on wordpress's this move,please let us know in comment section below.

 

Twitter Launches An Official Wordpress Plugin, Finally !

twitter official wordpress plugin

Twitter has now finally released an official Twitter plugin for WordPress that brings a bunch of Twitter functionality to your site easily.

Twitter since its inception i.e. from 9 years of its launch, Twitter has never released an official plugin to make WordPress and Twitter go hand in hand. Until today.

The official Twitter plugin for WordPress helps sites powered by WordPress embed Twitter content and grow their audience on Twitter, announced Twitter in its official blog post.

The new plugin will bring whole lot of features; it automatically generates Twitter Cards for your pages, enables Twitter Analytics, embeds video and adds a tweet button to posts in the admin interface.

Here's what the new Twitter WordPress plugin does out of the box:

  • Lets you add a one-click sharing button so visitors can tweet out your stuff

  • Lets you more easily embed tweets, and customize the color scheme of embedded tweets to match your site's look. You can change the link color, border color, and pick from a “light” or “dark” look

  • Automatically builds Twitter Cards when you share stuff to Twitter

  • Helps you add a follow button to your layout

  • Tracks ad conversions if you’re running a Twitter Ad campaign for your wordpress blog



Within few hours of its launch, WordPress is reporting that it already has over 159,000 downloads.

Market Reports

Market Report & Surveys
IndianWeb2.com © all rights reserved