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 | |
/** | |
* REST API | |
* The SEO Framework | |
* | |
* @package scout_rest_theme | |
* | |
* List of title methods | |
* @link https://github.com/sybrew/the-seo-framework/issues/202#issuecomment-412781194 | |
* |
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
module.exports = async (app) => { | |
app | |
/** | |
* Application entrypoints | |
* | |
* Paths are relative to your resources directory | |
*/ | |
.entry({ | |
app: { | |
import: ['@scripts/app', '@styles/app'], |
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: Block Editor Cleanup | |
* Plugin URI: https://github.com/WordPress/gutenberg/issues/38299#issuecomment-1025520487 | |
* Version: 1.0.1 | |
* Description: Remove WP 5.9 default block editor styles when using Classic Editor | |
* Author: joshuafredrickson | |
* Author URI: https://joshuafredrickson.com | |
* License: GNU General Public License v2 | |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html |
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 | |
namespace App\View\Composers; | |
use Roots\Acorn\View\Composer; | |
use Log1x\Navi\Facades\Navi; | |
use function App\get_parent; | |
use function acf_get_attachment; | |
class NavHeader extends Composer |
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
curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar | |
chmod +x wp-cli.phar | |
mkdir ~/bin | |
mv wp-cli.phar ~/bin/wp |
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 | |
/** | |
* Move All In One SEO (AIOSEO) metabox to bottom of the page. | |
* Drop this in your functions.php file or wherever appropriate. | |
* | |
* @return string | |
*/ | |
add_filter( 'aioseo_post_metabox_priority', function ($priority) { | |
return 'low'; | |
}); |
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: Disable Plugins | |
* Plugin URI: https://gist.github.com/joshuafredrickson/949cc0eb19d8ca2d5d7c23d8d9134ff3 | |
* Version: 1.0.0 | |
* Description: Disable certain plugins in certain environments | |
* Author: joshuafredrickson | |
* Author URI: https://github.com/joshuafredrickson | |
* License: GNU General Public License v2 | |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html |
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
/** | |
* Detect IE11 and open the current window in Edge instead | |
*/ | |
if ( | |
navigator.userAgent.indexOf('MSIE') !== -1 || | |
navigator.appVersion.indexOf('Trident/') > -1 | |
) { | |
// Redirect to Edge | |
window.location = 'microsoft-edge:' + window.location.href; |
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
<!-- WP uses `.alignwide` and `.alignfull` for wide and full-width blocks. --> | |
<div class="wp-block-group alignwide"> | |
<div class="wp-block-group__inner-container"> | |
<div class="wp-block-columns"> | |
<div class="wp-block-column"> | |
<p>Paragraph text in a column.</p> | |
</div> | |
<div class="wp-block-column"> | |
<p>The second column.</p> | |
</div> |
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
{ | |
"http-basic": { | |
"satispress.domain.com": { | |
"username": "<apikey>", | |
"password": "satispress" | |
} | |
} | |
} |