TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

WordPress usage worldwide

58 点作者 tanrax超过 5 年前

11 条评论

rbritton超过 5 年前
By only profiling the top 1M sites, I wonder if this may be sampling from a set not normally distributed? I suspect the frequency of use of WordPress might go up the further down the list you go — some random blog is less likely to be on the top 1M list yet be more likely to use WordPress.
评论 #21429097 未加载
评论 #21429047 未加载
modernerd超过 5 年前
The test is likely to be under-reporting WordPress installations as it stands.<p>The script seems to detect a WordPress site by looking for a meta generator tag containing WordPress:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;tanrax&#x2F;calculate-wordpress-usage&#x2F;blob&#x2F;5aa344aa2d55c43ae0885b1b8c8f4fa09a787c0a&#x2F;src&#x2F;wordpress_used&#x2F;core.clj#L24" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;tanrax&#x2F;calculate-wordpress-usage&#x2F;blob&#x2F;5aa...</a><p>It&#x27;s pretty common to remove that meta tag — popular WordPress theme frameworks like Genesis do it by default.<p>A more reliable test would be to look for additional strings in the source that point to the use of WordPress, such as “wp-content” and “wp-includes”.<p>A faster way that avoids string searches would be to send an HTTP head request to `&#x2F;wp-login.php` and check for:<p>Set-Cookie: wordpress_test_cookie<p>(&#x2F;wp-login.php doesn&#x27;t always appear in the root directory and it&#x27;s not always accessible to all IPs, but that setup is most common).
评论 #21429952 未加载
benbristow超过 5 年前
The way this works seems to check if there&#x27;s the &quot;generator&quot; meta tag in the &lt;head&gt;.<p>Custom themes etc. might choose to omit that so it&#x27;s not a 100% reliable check
评论 #21433101 未加载
评论 #21428990 未加载
评论 #21429213 未加载
评论 #21428988 未加载
mxpxrocks10超过 5 年前
you have to use a larger sample. There are 300M+ domains. The longer tail will surely have more wordpress in it.
评论 #21428983 未加载
评论 #21429538 未加载
buboard超过 5 年前
&gt; the list of the first million domains with the most visits<p>How is that a random sample?
评论 #21429013 未加载
audessuscest超过 5 年前
Only ? Looks like a big number for worldwide usage, no ?
评论 #21428955 未加载
评论 #21428958 未加载
ga-vu超过 5 年前
Google Translate link for the article at the end of the repo:<p><a href="https:&#x2F;&#x2F;translate.google.com&#x2F;translate?sl=auto&amp;tl=en&amp;u=https%3A%2F%2Fprogramadorwebvalencia.com%2Fanalizando-un-millon-de-paginas-para-saber-cuanto-se-usa-wordpress-2019%2F" rel="nofollow">https:&#x2F;&#x2F;translate.google.com&#x2F;translate?sl=auto&amp;tl=en&amp;u=https...</a>
capableweb超过 5 年前
The Readme says &quot;Warning that it can take a long time: between 20 to 30 days.&quot;<p>How in the world can it take so long time? The csv file seems to be 24mb in size and the computation performed can&#x27;t be that advanced. Did the author do something seriously wrong?
评论 #21429974 未加载
评论 #21429600 未加载
评论 #21429430 未加载
mfer超过 5 年前
This is a pretty amazing feat. The top 1 million sites includes many who have the money to afford custom sites and yet Wordpress is still almost 1&#x2F;5 of sites.
评论 #21429757 未加载
评论 #21430161 未加载
blondin超过 5 年前
so they studied the top 1M websites and found 19% is using wordpress? man, that&#x27;s a good chunk if you ask me.
评论 #21433158 未加载
hestefisk超过 5 年前
I’m wondering why this takes 20-30 days to run all up? Seems crazy for 1M requests. Could one make this a concurrent task and get much greater efficiency?