Skip to content

Instantly share code, notes, and snippets.

@CEscorcio
CEscorcio / sharing.php
Created September 8, 2016 18:13
Share post in Wordpress
<div id="share-buttons">
<a href="https://www.facebook.com/sharer/sharer.php?u=<?php the_permalink(); ?>&text=<?php the_title(); ?>"><img src="http://alskadehem.se/wp-content/uploads/2014/04/facebook.png" alt="Facebook" /></a>
<a href="http://twitter.com/share?url=<?php the_permalink(); ?>&text=<?php the_title(); ?>" target="_blank"><img src="http://www.simplesharebuttons.com/images/somacro/twitter.png" alt="Twitter" /></a>
<a href="https://plus.google.com/share?url=<?php the_permalink(); ?>&text=<?php the_title(); ?>" target="_blank"><img src="http://www.simplesharebuttons.com/images/somacro/google.png" alt="Google" /></a>
@CEscorcio
CEscorcio / recent posts.php
Created November 8, 2016 09:33
Wordpress recent posts with thumb check
<ul>
<?php $the_query = new WP_Query( 'posts_per_page=2' ); ?>
<?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?>
<li class="col-md-6"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
<?php
if ( has_post_thumbnail() ) {
the_post_thumbnail();
}
else {
@CEscorcio
CEscorcio / .gitignore
Last active February 20, 2021 20:04
gitignore Wordpress
### WordPress ###
# ignore everything in the root except the "wp-content" directory.
/*
!wp-content/
# ignore everything in the "wp-content" directory, except:
# "mu-plugins", "plugins", "themes" directory
wp-content/*
!wp-content/plugins/
!wp-content/themes/