Skip to content

Instantly share code, notes, and snippets.

View rhcarlosweb's full-sized avatar
🖖

Rhuan Carlos rhcarlosweb

🖖
View GitHub Profile
@rhcarlosweb
rhcarlosweb / botões-redes-sociais.html
Last active March 9, 2016 19:15
Botões compartilhamento Fox Temas
<!-- facebook -->
<a target="_blank" href="http://www.facebook.com/sharer.php?s=100&p[url]=<?php the_permalink();?>" onclick="return !window.open(this.href, 'Facebook', 'width=500,height=500,left=200,top=200')" class="facebook-share-btn text-hide">Facebook</a>
<!-- twitter -->
<a target="_blank" href="https://twitter.com/intent/tweet?url=<?php the_permalink();?>&text=<?php the_title();?>" onclick="return !window.open(this.href, 'Twitter', 'width=500,height=500,left=200,top=200')" class="twitter-share-btn text-hide">Tweet</a>
<!-- google -->
<a target="_blank" href="https://plus.google.com/share?url=<?php the_permalink();?>" onclick="return !window.open(this.href, 'Google', 'width=500,height=500,left=200,top=200')" class="google-share-btn text-hide">Google</a>
<!-- pinterest -->
@rhcarlosweb
rhcarlosweb / foxtemas_archive_by_year.php
Created March 31, 2015 18:30
Arquivos separados por ano
<?php
/*
Para usar : foxtemas_archive_year();
*/
function foxtemas_archive_year($args = '') {
global $wpdb, $wp_locale;
$defaults = array(
'limit' => '',
@rhcarlosweb
rhcarlosweb / page-gallery.php
Last active August 29, 2015 14:21
Gallery page using ACF PRO with a dynamically generated zip file download of all gallery images.
@rhcarlosweb
rhcarlosweb / add-info-facebook-to-custom-field-wordpress.php
Last active May 25, 2016 18:54
Adiciona informações do facebook a campos personalizados WordPress
<?php
function foxtemas_insert_facebook_likes_custom_field($post_ID) {
global $wpdb;
if (!wp_is_post_revision($post_ID)) {
add_post_meta($post_ID, 'likes_count', '0', true);
}
}
add_action('publish_page', 'foxtemas_insert_facebook_likes_custom_field');
@rhcarlosweb
rhcarlosweb / _shart_after_crop.md
Last active May 25, 2016 18:52
WordPress Sharpen Image after Crop

Sharpen image after crop

This function sharpen images after WordPress crop, it's cool for images with small sizes width and height, make more visible and less blur, so more quality 😬, but test first, because on some type of images make a low quality image

Usage

Insert the function on your functions.php

@rhcarlosweb
rhcarlosweb / _remove_adminmenus_wordpress.md
Last active July 15, 2016 01:44
Remove Itens Menu WordPress

Remove Menus WordPress

These functions remove menu links from dashboard WordPress, and adminbar menu on top

@rhcarlosweb
rhcarlosweb / _readme.md
Last active May 14, 2016 19:37
Extract paragraph based on keywords

Extract paragraph based on keywords

That function extract paragraph based on specific keywords

Archive Function

Archive Template Page to WordPress, list years, and months

@rhcarlosweb
rhcarlosweb / _lastpins.md
Last active August 30, 2017 23:07
Pinterest Last Pin Feed with PHP

Show last pins base on your pinterest feed

Simple function php

@rhcarlosweb
rhcarlosweb / .gitconfig
Last active October 5, 2017 15:25
Global Configs e Variável para cores terminal
[alias]
co = checkout
br = branch
ci = commit
st = status
hide = update-index --assume-unchanged
unhide = update-index --no-assume-unchanged
unstage = reset HEAD --
last = log -1 HEAD
ps = push