res:plugins:phpversion
Table of Contents
PHPversion Plugin
Author: Lubomír Ludvík
Description
This plugin ad tag [php_version], which will display the PHP version.
Download
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
