Skip to content

Instantly share code, notes, and snippets.

@hellofromtonya
Created April 15, 2017 20:49
Show Gist options
  • Save hellofromtonya/7b832d3ff4cfd09366167be25d34a01e to your computer and use it in GitHub Desktop.
Save hellofromtonya/7b832d3ff4cfd09366167be25d34a01e to your computer and use it in GitHub Desktop.
PHP String Lab - Lab Intro
<?php
/**
* Sandbox Playing Plugin
*
* @package KnowTheCode\Sandbox
* @author hellofromTonya
* @license GPL-2.0+
* @link https://KnowTheCode.io
*
* @wordpress-plugin
* Plugin Name: Sandbox Playing Plugin
* Plugin URI: https://KnowTheCode.io
* Description: Our testing and playing Sandbox plugin for code labs.
* Version: 1.1.4
* Author: hellofromTonya
* Author URI: https://KnowTheCode.io
* Text Domain: sandbox
* Requires WP: 3.5
* Requires PHP: 5.3
*/
namespace KnowTheCode\Sandbox;
$first_name = 'Tonya';
$post_id = 12;
echo 'My name is Tonya';
echo 'The post ID is 12';
die();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment