php


WordPress Plugin tutorial part 2 The Header

Ok so lets get started. create a file with your text editor. Add the following text to the very top of the file.
<?php
/*
Plugin Name: Author Plug
Plugin URI: http://MyBlogIt.net/plugins
Description: Displays a short bio and image for each author above or below each post.
Version: 0.5
Author: David Span
Author URI: http://davidspan.com/
*/
?>
Plugin Header
What we have just done is add our [...]

Previous Stories