User Tools

Site Tools


res:plugins:phpversion

PHPversion Plugin

Description

This plugin ad tag [php_version], which will display the PHP version.

Download

plugin_phpversion.zip

Simple code is in the file: flatpress_plugins/phpversion/plugin.phpversion.php

<?php
/*
Plugin Name: PHP Version
Description: Get the PHP version using [php_version]
Author: FlatPress User
Author URI: https://www.flatpress.cz
Version: 1.0
*/

function plugin_phpversion_shortcode($content) {
         return str_replace('[php_version]', phpversion(), $content);
}
add_filter('the_content', 'plugin_phpversion_shortcode');
?>
res/plugins/phpversion.txt · Last modified: by fraenkiman

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki