Wordpress

From Wikicliki
Revision as of 04:12, 5 March 2013 by WikiSysop (talk | contribs) (Importing / exporting xml)

Jump to: navigation, search

Importing / exporting xml

Whatever

Geotagging

http://www.lucianmarica.com/stuff/geotagging-from-image-exif-data-in-wordpress/

Snippets

<?php
if ( in_category('fruit') ) {
	include 'single-fruit.php';
} elseif ( in_category('vegetables') ) {
	include 'single-vegetables.php';
} else {
	// Continue with normal Loop
	if ( have_posts() ) : while ( have_posts() ) : the_post();
	// ...
}
?>
<?php if ( get_post_meta($post->ID, 'thumb', true) ) : ?>
    <a href="<?php the_permalink() ?>" rel="bookmark">
        <img class="thumb" src="<?php echo get_post_meta($post->ID, 'thumb', true) ?>" alt="<?php the_title(); ?>" />
    </a>
<?php endif; ?>