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
[core] | |
repositoryformatversion = 0 | |
filemode = false | |
bare = false | |
logallrefupdates = true | |
symlinks = false | |
ignorecase = true | |
hideDotFiles = dotGitOnly | |
[remote "origin"] | |
fetch = +refs/heads/*:refs/remotes/origin/* |
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 | |
/** | |
* Local configuration of WordPress, for Pilau Starter | |
* | |
* @link http://markjaquith.wordpress.com/2011/06/24/wordpress-local-dev-tips/ | |
* @link https://github.com/pilau/starter/wiki/How-to-use | |
*/ | |
define( 'DB_NAME', '[[local-db-name]]' ); |
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
<!-- | |
Created for testing the Pilau Starter theme | |
Adapted from: http://www.cs.tut.fi/~jkorpela/www/testel.html | |
@todo Make it better! Add new HTML5 elements | |
--> | |
<div id="content"> | |
<h1>Testing display of HTML elements</h1> | |
<h2>This is 2nd level heading</h2> |
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 | |
/** | |
* Nice WordPress admin login link | |
*/ | |
function pilau_wp_login_link() { | |
if ( is_user_logged_in() ) { | |
echo '<a href="/wp-admin/">' . __( 'Admin' ) . '</a>'; | |
} else { | |
echo '<a href="' . wp_login_url() . '">' . __( 'Login' ) . '</a>'; |
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 | |
/** | |
* Force WordPress login | |
*/ | |
add_action( 'init', 'pilau_force_login' ); | |
function pilau_force_login() { | |
if ( ! is_user_logged_in() && $_SERVER["SCRIPT_NAME"] != '/wp-login.php' ) { | |
wp_redirect( wp_login_url() ); | |
exit(); |
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 | |
/** | |
* Remove WordPress content editor from certain pages | |
* Add page IDs to the array | |
*/ | |
add_action( 'do_meta_boxes', 'pilau_remove_editor' ); | |
function pilau_remove_editor() { | |
global $post; | |
if ( in_array( $post->ID, array( ) ) ) |
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 | |
/** | |
* Taxonomy list filters and columns | |
* | |
* @todo Test! | |
* @todo Need replacement function for slt_terms_list() | |
* @link http://wordpress.stackexchange.com/questions/578/adding-a-taxonomy-filter-to-admin-list-for-a-custom-post-type/3215#3215 | |
*/ | |
add_action( 'restrict_manage_posts', 'pilau_restrict_manage_posts' ); |
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 | |
/** | |
* Rename "Posts" to "News" | |
* | |
* @link http://new2wp.com/snippet/change-wordpress-posts-post-type-news/ | |
*/ | |
add_action( 'admin_menu', 'pilau_change_post_menu_label' ); | |
add_action( 'init', 'pilau_change_post_object_label' ); | |
function pilau_change_post_menu_label() { |
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 | |
/** | |
* Skeletal sample shortcode | |
*/ | |
add_shortcode( 'pilau-sample', 'pilau_sample_shortcode' ); | |
function pilau_sample_shortcode( $atts ) { | |
extract( shortcode_atts( array( | |
'text' => '' | |
), $atts ) ); |
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 | |
/** | |
* Store public custom post types in global variable | |
*/ | |
add_action( 'init', 'pilau_custom_post_types_var', 1 ); | |
function pilau_custom_post_types_var() { | |
global $pilau_custom_post_types; | |
$pilau_custom_post_types = get_post_types( array( | |
'public' => true, |
OlderNewer