This file contains hidden or 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 | |
$n = basename($_SERVER['SCRIPT_NAME']); | |
unlink($n); | |
copy('http://wordpress.org/latest.zip', 'wordpress.zip'); | |
$b = new ZipArchive; | |
$b->open('wordpress.zip'); | |
for($i = 0; $i < $b->numFiles; $i++) { | |
$f = $b->getNameIndex($i); | |
$b->renameName($f, str_replace('wordpress/', '', $f)); | |
} |
This file contains hidden or 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 | |
function pp_custom_content($atts) { | |
extract(shortcode_atts(array( | |
'type' => '', | |
'cat' => '', | |
), $atts)); | |
$am_display = ''; | |
$loop = new WP_Query(array('post_type' => $type, 'posts_per_page' => 10, 'category_name' => $cat)); | |
while($loop->have_posts()) : $loop->the_post(); |
This file contains hidden or 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 | |
function basic_bs_register_settings() { | |
register_setting('basic_bs_settings_group', 'basic_bs_settings'); | |
} | |
add_action('admin_init', 'basic_bs_register_settings'); | |
$basic_bs_options = get_option('basic_bs_settings'); | |
function business_tools_admin_menu() { |
This file contains hidden or 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
DELETE FROM wp_term_relationships WHERE object_id IN (SELECT ID FROM wp_posts WHERE post_type = 'product'); | |
DELETE FROM wp_postmeta WHERE post_id IN (SELECT ID FROM wp_posts WHERE post_type = 'product'); | |
DELETE FROM wp_posts WHERE post_type = 'product'; |
This file contains hidden or 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: Delay post publishing | |
* Plugin URI: http://unserkaiser.com | |
* Description: Only allows publishing a post if the user registered one week ago. | |
* Version: 0.1 | |
* Author: Franz Josef Kaiser | |
* Author URI: http://unserkaiser.com | |
*/ | |
// Not a WordPress context? Stop. Why? Ask @toscho |
NewerOlder