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 | |
/** | |
* | |
* Wordpress Hook into the plugin action links and filter them! | |
* @author rene reimann | |
* @authorHome http://www.rene-reimann.de | |
* | |
* @hook plugin_action_links Hooks into the plugin action links | |
* |
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 | |
/** | |
* | |
* Add only for parents coustom term Options | |
* @author rene reimann | |
* @home http://www.rene-reimann.de | |
* | |
* @hook category_add_form_fields Hooks into the category edit page | |
* @hook edit_tag_form_fields Hooks into the category frontpage |
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
add_filter( 'manage_category_custom_column','myTestC'); | |
function myTestC($content){ | |
return $content; | |
} |
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
function custom_excerpt($excerpt){ | |
preg_match_all('/<img.*?src="(.+?)"(.*?)>/i',get_the_content(),$match); | |
$image = $match[0][0]; | |
$link = '<h2><a href="'.get_permalink().'" title="'.get_the_title().'"></a></h2>'; | |
$excerpt = '<p>'.$excerpt.'</p>'; | |
return $image . $link . $excerpt; | |
} | |
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> | |
<html> | |
<head> | |
<title>Purple Pacman</title> | |
</head> | |
<style> | |
#pacman{ | |
width: 0px; | |
height: 0px; |
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 | |
/** | |
* Smarty plugin | |
* @package Smarty | |
* @subpackage PluginsModifier | |
*/ | |
/** | |
* Smarty {$xml|parseXML} function plugin | |
* |
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
http://wordpress.org/extend/plugins/g-lock-double-opt-in-manager |
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
<? | |
/* | |
* add the following code to the add_filter and do_action function in the wp-includes/plugin.php | |
function add_filter($tag, $function_to_add, $priority = 10, $accepted_args = 1) { | |
global $wp_filter, $merged_filters; | |
*/ |
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> | |
<html> | |
<head> | |
<title>Clint Side Caching</title> | |
</head> | |
<body> | |
<div id="iframe"></div> |
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: Plugin Options | |
* Description: Jo Fetzt wa? | |
* Version: 0.88 | |
* Author: René Reimann | |
*/ | |
add_filter( 'plugin_action_links_plugin-options.php', 'po_plugin_action_links', 10, 3 ); |
OlderNewer