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: Change the size of the Image preview on the media edit page | |
* Author: Birgir Erlendsson (birgire) | |
* Plugin URI: http://wordpress.stackexchange.com/questions/204280/change-the-size-of-the-image-preview-on-the-media-edit-page | |
* | |
* ------------------------------------------------------------------------------------ | |
* Possible workaround, without core modifications, | |
* but note that the javascript crop-selection numbers will not be accurate, | |
* when $inf <> 400 |
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
/** | |
* Redirect attachment page visits to the parent page, else the home page. | |
*/ | |
add_action( 'template_redirect', function() | |
{ | |
if( ! is_attachment() ) | |
return; | |
if( $parent_id = wp_get_post_parent_id() ) | |
wp_safe_redirect( esc_url( get_permalink( $parent_id ) ) ); |
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 | |
/** | |
* Print the clean basedomain in the admin footer | |
* | |
* Place the file under /wp-content/mu-plugins/wpse.php | |
* | |
* @uses get_clean_basedomain() | |
*/ | |
add_action( 'in_admin_footer', function(){ | |
if( function_exists( 'get_clean_basedomain' ) ) |
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
/** | |
* Retrieve category list in either HTML list or custom format. | |
* | |
* @since 1.5.1 | |
* | |
* @global WP_Rewrite $wp_rewrite | |
* | |
* @param string $separator Optional, default is empty string. Separator for between the categories. | |
* @param string $parents Optional. How to display the parents. | |
* @param int $post_id Optional. Post ID to retrieve categories. |
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: Extend the tag search | |
* Description: Search for name, slug or description in the tag search in /wp-admin/edit-tags.php?taxonomy=post_tag. | |
* Plugin URI: https://gist.github.com/birgire/4a43dbe1b7566aa0f162b59066276d15 | |
* Author: birgire | |
* Version: 1.0.0 | |
*/ | |
/** |
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: Term Editor Search Field | |
* Description: Adds Search fields to the term editor. | |
* Plugin URI: https://gist.github.com/birgire/22a57ad1eed45e366cc1d47575bba0b1 | |
* Author: birgire | |
* Version: 1.0.2 | |
*/ | |
/** |
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: Ping Screenshots Capture | |
* Description: Ping screenshots capture generation using an hidden iframe only once for published posts | |
* Version: 1.0.0 | |
* Author: birgire | |
*/ | |
namespace PingScreenshotCapture; |
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 | |
/** | |
* @version: 1.0.3 | |
* @see http://stackoverflow.com/questions/38551606/do-not-submit-form-after-wrong-code/38602177 | |
*/ | |
add_filter( 'login_form', function() | |
{ | |
$options = get_option( 'authcode_settings' ); |
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
/** | |
* Inject Ads To WordPress Comments - end-callback for wp_list_comments(). | |
* | |
* The Ads HTML is sanitized through wp_kses_post(). | |
* | |
* @version 1.0.11 | |
* @see https://wordpress.stackexchange.com/a/328155/26350 | |
*/ | |
function wpse_comments_ads_injection( $comment, $args, $depth ) { | |
static $instance = 0; |