5785 shaares
63 results
tagged
wordpress
adding featured image in bg
<?php if (has_post_thumbnail( $post->ID ) ): ?> <?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' ); ?> <div id="custom-bg" style="background-image: url('<?php echo $image[0]; ?>')">
</div> <?php endif; ?>
translating widgets with WPML blog version
"#" point menu to nothing
"Some people solved this question by switching over to Wordpress 3.0 menus. "Just create custom menu items with the WordPress menu builder, and add # as the link.""
"// load google fonts function google_fonts(){ echo '<link href="http://fonts.googleapis.com/css?family=Droid+Serif" rel="stylesheet" type="text/css">' . "\n"; } add_action('wp_head', 'google_fonts', 0);"