Skip to content

Instantly share code, notes, and snippets.

View abrcoelho's full-sized avatar

Abraão Coelho abrcoelho

  • Tech Lead
  • Belo Horizonte, MG, Brasil
  • X @abrcoelho
View GitHub Profile
function custom_query_shortcode($atts) {
// EXAMPLE USAGE:
// [loop the_query="showposts=100&post_type=page&post_parent=453"]
// Defaults
extract(shortcode_atts(array(
"the_query" => ''
), $atts));
@abrcoelho
abrcoelho / findPHPFilesWithTrailingWhitespace.sh
Last active September 8, 2015 21:36 — forked from AlexChittock/findPHPFilesWithTrailingWhitespace.sh
Find PHP files with trailing whitespace
find . -name "*.php" | xargs grep -c -P '\s+$' | grep -v ':0$'