View remove-attachments.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Kill Attachment Pages | |
Plugin URI: http://pmg.co/ | |
Description: Redirects all attachment pages to their parent page | |
Version: 1.0 | |
Author: Christopher Davis | |
Author URI: http://pmg.co/people/chris | |
License: creative commons/GPL2 | |
*/ |
View add-excerpt-shortcodes.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Add Shortcodes (For WordPress Answers #27119) | |
Plugin URI: http://pmg.co/ | |
Description: Adds shortcodes to the excerpt | |
Version: 1.0 | |
Author: Christopher Davis | |
Author URI: http://pmg.co/people/chris | |
License: creative commons/GPL | |
*/ |
View update-thumbnails.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Update thumbnails | |
Plugin URI: http://pmg.co | |
Description: Takes a url from a custom field and turns it into a thumbnail ID | |
Version: .01 | |
Author: Christopher Davis | |
Author URI: http://pmg.co/people/chris | |
*/ |
View custom-shortlink.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: WP Custom Shortlinks | |
Plugin URI: http://pmg.co/ | |
Description: Customizes the default WordPress Shortlinks | |
Version: n/a | |
Author: Christopher Davis | |
Author URI: http://pmg.co/people/chris | |
*/ |
View front.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class pmgSeoAutoLinkerFront | |
{ | |
function __construct() | |
{ | |
add_filter( 'the_content', array( &$this, 'content' ), 1, 1 ); | |
} | |
function content( $content ) | |
{ |
View wp-registration-keys.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: WP Invite Codes | |
Plugin URI: http://pmg.co/ | |
Description: Makes wordpress an invite only community. | |
Version: n/a | |
Author: Christopher Davis | |
Author URI: http://pmg.co/people/chris | |
*/ |
View wp-dlvrit.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// http://pmg.co | |
class wpDlvrit | |
{ | |
protected $key; | |
function __construct( $key = false ) | |
{ | |
$this->set_key( $key ); | |
} |
View rewrite-endpoint.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Gallery Rewrite (for wpse27638) | |
Plugin URI: http://pmg.co | |
Description: Builds cutom rewrites to display a gallery or not. | |
Version: 1 | |
Author: Christopher Davis | |
Author URI: http://pmg.co/people/chris | |
License: creative commons/GPL2 | |
*/ |
View image-above-title.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Image Above Title | |
Plugin URI: http://pmg.co | |
Description: Adds an image above the title on the WordPress post editing screen. | |
Version: n/a | |
Author: Christopher Davis | |
Author URI: http://pmg.co/people/chris | |
License: creative commons/GPL2 | |
*/ |
View cat-list-example.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Get Terms Example | |
Plugin URI: http://pmg.co | |
Description: Get a list of all the categories and format them pretty like for output | |
Version: n/a | |
Author: Christopher Davis | |
Author URI: http://pmg.co/people/chris | |
License: Creative Commons/GPL2 | |
*/ |
OlderNewer