Skip to content

Instantly share code, notes, and snippets.

View mae829's full-sized avatar

Miguel A. Estrada mae829

View GitHub Profile
@mae829
mae829 / gulp.config.js
Last active March 17, 2021 18:43
Gulp project setup
/**
* WPGulp Configuration File
*
* 1. Edit the variables as per project requirements.
* 2. Everything else is in the gulpfile to keep it consistent across our projects.
*/
// Define the default project configuration.
let projectConfig = {
// Local project URL of your already running WordPress site. Could be something like wpgulp.local or localhost:3000 depending upon your local WordPress setup.
@mae829
mae829 / upload-resources-message-filter.php
Last active September 10, 2020 23:57
WordPress - Filters to let your user know about image/PDF compression resources at the upload screens
<?php
/**
* Image and PDF compression resources message at upload screens.
*/
function upload_suggestions_message() { ?>
<h3>Uploading Files Guide</h3>
<p class="upload-html-bypass hide-if-no-js">Here are a few options to reduce the size of images/files before uploading them (please always do this to help load the site faster for visitors!!).</p>
<ul>
<li><a href="https://compressor.io/" target="_blank">Compressior.io - Compress all your images with this site.</a></li>
<li><a href="https://smallpdf.com/" target="_blank">SmallPDF.com - Compress those PDFs as well for clients or on page display.</a></li>
@mae829
mae829 / get-primary-category.php
Last active September 10, 2020 23:58
WordPress helper function to retrieve an attribute (or the whole category object) of the primary category. Should be used inside the lop.
<?php
/**
* Get Primary Category
*
* Get the primary category of the post.
* Should be used inside the loop.
*
* @param string $att Attribute of the category that is desired (if 'all' is passed, will return whole object)
* @param boolean $wpseo Whether or not to use WPSEO (if it's on/installed)
*
@mae829
mae829 / has-gallery.php
Last active April 6, 2022 21:46
WordPress - function to detect if a page/post has a gallery
@mae829
mae829 / wp-remove-featured-image.php
Last active September 19, 2020 03:37
WordPress - Remove the featured image from the content in feeds
@mae829
mae829 / array-deep-key-search.php
Last active September 10, 2020 23:58
Code to check for a key inside a deep array
<?php
// Deep search array for key.
function multi_key_exists( array $arr, $key ){
// is in base array?
if ( array_key_exists($key, $arr) ) return true;
// check arrays contained in this array.
foreach ( $arr as $element ) {
if ( is_array( $element ) && multi_key_exists( $element, $key ) ){
return true;