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: Future Core Login | |
* Plugin URI: http://unserkaiser.com | |
* Description: Replacing the current stylesheets loaded on wp-login.php until this ticket goes into core: <a href="http://core.trac.wordpress.org/ticket/12506">#12506</a> | |
* Version: 0.1 | |
* Author: Franz Josef Kaiser | |
* Author URI: http://unserkaiser.com | |
* License: GPL2 | |
* |
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
/** | |
* Custom login like it should be in core in a future version | |
*/ | |
/** | |
* The following is additional: | |
* Removing dotted borders around links & buttons as far as possible | |
*/ | |
button::-moz-focus-inner, | |
input[type="reset"]::-moz-focus-inner, |
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 | |
/*************************************************** | |
* DISCONTINUED - PLEASE UPDATE TO WORDPRESS v 3.1 | |
***************************************************/ | |
/** | |
* post_has_term() | |
* must be used inside the loop | |
* not tested with arrays so far | |
* until WP 3.1 | |
* @param $tax auto lowercase for slug |
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
- MOVED- | |
Can now be found as a repository here: https://github.com/franz-josef-kaiser/blueprint-dev---debug |
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
- MOVED- | |
Can now be found as a repository here: https://github.com/franz-josef-kaiser/blueprint-dev---debug |
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
- MOVED - | |
Can now be found in a repository incl. license, readme, styles and plugin php file: https://github.com/franz-josef-kaiser/Easy-Pagination-Deamon |
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
[post] | |
name = "Test Headline Post" | |
id = "_testid_post" | |
content = " | |
Zwei flinke Boxer jagen die quirlige Eva und ihren Mops durch Sylt. Franz jagt im komplett | |
verwahrlosten Taxi quer durch Bayern. Zwölf Boxkämpfer jagen Viktor quer über den großen Sylter | |
Deich. Vogel Quax zwickt Johnys Pferd Bim. Sylvia wagt quick den Jux bei Pforzheim. Polyfon | |
zwitschernd aßen Mäxchens Vögel Rüben, Joghurt und Quark. "Fix, Schwyz! " quäkt Jürgen blöd | |
vom Paß. Victor jagt zwölf Boxkämpfer quer über den großen Sylter Deich. Falsches Üben von | |
Xylophonmusik quält jeden größeren Zwerg. Heizölrückstoßabdämpfung. |
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
/** | |
* Production, Staging, Live | |
*/ | |
define( 'OXO_LOCAL_A', '/wordpress/' ); | |
define( 'OXO_STAGE', 'some-stage.domain.com' ); | |
if ( substr($_SERVER['REQUEST_URI'], 0, 11) == OXO_LOCAL_A ) | |
{ | |
// DB | |
define( 'DB_NAME', 'wordpress' ); |
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: Remove Builtin WP Taxonomies | |
*/ | |
add_action( 'init', 'unregister_taxonomy' ); | |
/** | |
* Remove built in taxonomies | |
* @author: Franz Josef Kaiser | |
*/ |
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 Upgrade Class | |
if ( !class_exists( 'PluginUpgrade' ) ) | |
{ | |
class PluginUpgrade | |
{ | |
private $plugin_url = false; | |
private $remote_url = false; |
OlderNewer