-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (28 loc) · 1.93 KB
/
index.html
File metadata and controls
36 lines (28 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
layout: default
---
<div class="home">
<h1>WPupdatePHP: Time to update your PHP version</h1>
<p>This library and website aim to get everyone updated to at least a <a href="http://php.net/supported-versions.php">supported version of PHP</a>.</p>
<p>WordPress has PHP 5.2.4 as the <a href="https://wordpress.org/about/requirements/">minimum required version</a>. This is a version that has been unsupported since early 2011. All PHP versions below 5.6 are currently no longer supported. This means that these versions don't receive any updates, which leaves them potentially insecure.</p>
<p>PHP 7+ is now the recommended version for WordPress, so we can actively start to ask hosts to update their PHP versions. This library helps you do that.</p>
<h2>For non-developers</h2>
<p>If you are not a developer, you should read our <a href="/update/">Time to update</a> page.</p>
<h2>Developers, bundle this library with your plugins!</h2>
<p>Are you as sick as we are by having to make our code compatible with PHP 5.2? Good! You can now use our library to enforce your users to be at a minimum PHP version.</p>
<p>For all developers willing to contribute to this project, we have a <a href="https://github.com/WPupdatePHP/wp-update-php">library</a> and more <a href="/developers/">developer resources</a> available. Please implement this library for <strong>new plugins</strong> only, we don't want to lock out users of existing plugins. It's not their fault after all.</p>
{% if site.posts == blank %}
<h2>Posts</h2>
<ul class="post-list">
{% for post in site.posts %}
<li>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
</li>
{% endfor %}
</ul>
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
{% endif %}
</div>