Skip to content

Instantly share code, notes, and snippets.

@GuilhermeBarile
Last active December 5, 2017 08:01
Show Gist options
  • Save GuilhermeBarile/802314 to your computer and use it in GitHub Desktop.
Save GuilhermeBarile/802314 to your computer and use it in GitHub Desktop.
Wordpress code snippets
<?php
query_posts(array('post_type' => array('video', 'galeria'), 'posts_per_page' => 10));
include ABSPATH.'/wp-includes/feed-rss2.php';
exit;
<iframe src="http://www.facebook.com/plugins/like.php?href=<?php echo urlencode(get_permalink()) ?>&amp;layout=button_count&amp;show_faces=false&amp;width=90&amp;action=like&amp;colorscheme=light&amp;height=21" width="90" height="21" scrolling="no" frameborder="0" allowTransparency="true"></iframe>
<?php
$text = apply_filters('the_excerpt', get_post_field('post_excerpt', $post_id));
<a href="http://www.blogger.com/blog_this.pyra?t=<?php echo urlencode(get_the_title()) ?>&u=<?php echo urlencode(get_permalink()) ?>&n=<?php echo urlencode(get_the_excerpt()) ?>" class="blogger" title="Blogger">Blogger</a>
<a href="http://www.facebook.com/sharer.php?u=<?php echo urlencode(get_permalink()) ?>" class="facebook" title="Facebook">Facebook</a>
<a href="http://twitter.com/home?status=<?php echo urlencode(get_permalink()) ?>" class="twitter" title="Twitter">Twitter</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment