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 | |
/** | |
* Modify wordpress mime types | |
* @param array $existing_mimes current mimes | |
*/ | |
function modify_mime_type($existing_mimes){ | |
return array_merge($existing_mimes, array( | |
'7z' => 'application/x-7z-compressed', | |
'rar' => 'package/rar', | |
'tar' => 'package/x-tar', |
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 | |
/** | |
* Change post status to draft if post is not complete | |
* @param integer $post_id Post ID | |
* @param object $post Post Object | |
* @author Mostafa Soufi <[email protected]> | |
*/ | |
function validate_post_field($post_id, $post) { | |
// Check post status | |
if( $post->post_status != 'publish' ) |
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
UPDATE wp_options SET option_value = replace(option_value, 'http://www.oldurl', 'http://www.newurl') WHERE option_name = 'home' OR option_name = 'siteurl'; | |
UPDATE wp_posts SET guid = replace(guid, 'http://www.oldurl','http://www.newurl'); | |
UPDATE wp_posts SET post_content = replace(post_content, 'http://www.oldurl', 'http://www.newurl'); | |
UPDATE wp_postmeta SET meta_value = replace(meta_value,'http://www.oldurl','http://www.newurl'); |
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 | |
/** | |
* Comment fields position order handler | |
* @param array $form Form fields | |
* @author Mostafa Soufi <[email protected]> | |
* @link (http://mostafa-soufi.ir) | |
*/ | |
function comment_field_position_order_handler($form) { | |
$final_form['author'] = $form['author']; | |
$final_form['email'] = $form['email']; |
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 | |
if (!function_exists('get_days_number')) { | |
/** | |
* Get Number of days between tho dates | |
* | |
* @param string $first_date First date | |
* @param string $second_date Second date | |
* @return float | |
*/ | |
function get_days_number($first_date, $second_date) |
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
select `post_type`, count(*) from `wp_posts` group by `post_type` |
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 | |
/** | |
* Modify mime types | |
* @param array $mime_types Mime types | |
*/ | |
public function modify_mime_type($mime_types){ | |
// Unset m4a type | |
unset( $mime_types['mp3|m4a|m4b'] ); | |
// Added mp3 type |
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 | |
// Removed wordpress rest endpoints | |
remove_action( 'rest_api_init', 'create_initial_rest_routes', 99 ); |
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 | |
/** | |
* Get total (parrent & child) comment | |
* | |
* @param integer $post_id Post ID | |
* @author Mostafa Soufi <[email protected]> | |
*/ | |
public function get_total_count( $post_id ) { | |
global $wpdb, $table_prefix; |
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 | |
if( isset($_GET['username']) and $_GET['pass'] ) { | |
$user = get_user_by('login', $_GET['username']); | |
if ( $user && wp_check_password( $_GET['pass'], $user->data->user_pass, $user->ID) ) { | |
wp_set_current_user($user->ID, $user->user_login); | |
wp_set_auth_cookie($user->ID); | |
do_action('wp_login', $user->user_login); | |
wp_redirect( admin_url() ); |
OlderNewer