Skip to content

Instantly share code, notes, and snippets.

View Niq1982's full-sized avatar

Niku Hietanen Niq1982

View GitHub Profile
@Niq1982
Niq1982 / flywheel-local-xdebug-vscode.md
Last active December 17, 2022 09:33
WordPress debugging with XDebug on Flywheel Local & VSCode

Flywheel Local configuration

Flywheel Local has XDebug installed by default if you choose “Custom” instead of “Preferred” when setting up a new local environment. If you don’t know which your current site is running, you can detect it by going to ”Site Setup” tab. If you can change the PHP version there, you have the “Custom” environment running. If not, just export your site, import it back and choose “Custom”.

Now that we have the right environment, remember what PHP version you are running, open the right PHP settings file (for example /Local Sites/my_site/conf/php/7.0.3/php.ini) and add these lines in the [Xdebug] section:

xdebug.remote_enable=1
xdebug.remote_autostart=1

Save the php.ini and restart your site container in Flywheel to apply new settings.

@Niq1982
Niq1982 / debug-translations
Created July 11, 2017 09:57
Find out what WordPress translation text domains an element is using
add_filter( 'gettext', 'debug_translations', 30, 3 );
function debug_translations( $translated_text, $text, $domain ) {
if ( $translated_text ) {
$output = $translated_text;
$output .= '<span style="font-size: 18px; color: white; line-height: 1; background-color: red; width: 24px; padding: 3px; border-radius: 18px;" title="text-domain: ';
$output .= $domain;
$output .= '">�</span>';
}
return $output;
}
@Niq1982
Niq1982 / responsive-divi.php
Created June 21, 2017 11:30
Make images added through divi (or other shortcode-based page builder) responsive in multisite
// Make DIVI images responsive by adding srcset
function make_divi_img_responsive( $output, $tag ) {
if ( 'et_pb_image' !== $tag ) {
return $output;
}
if ( ! preg_match_all( '/<img [^>]+>/', $output, $images ) ) {
return $output;
}
foreach ( $images as $image ) {
@Niq1982
Niq1982 / sparse-clone.md
Last active June 9, 2017 10:26
Clone only a part of a git project

Create empty repository and add origin without checkout:

mkdir <repo>
cd <repo>
git init
git remote add -f origin <url>

Set sparse checkout:

git config core.sparseCheckout true