Skip to content

Tag Archives: wordpress

Add WordPress Featured Image as Automatic Facebook Like Button Image

27-Aug-11

Add the following in header.php, within the html head tag. <?php if (has_post_thumbnail() && is_single()) { // if feat im exists && current page is single article $thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'medium' ); $thumb_url = $thumb['0']; ?> <meta property="og:image" content="<?php echo $thumb_url; ?>" />

Customize Your Site Based on Visitor Behavior

21-Sep-10

This plugin utilizes widgets and BTBuckets. WP BTBuckets WordPress Plugin | OMNINOGGIN.

Refine WordPress Search with Relevanssi

19-May-10

Adding some relevance (and other goodies) to WordPress default search: Relevanssi search enhancer plugin. If only one could add the result count in the template I'd be perfectly happy.

When First Publish in WordPress Always Fails

08-Apr-10

Using Twitter Tools plugin? Disable it and install WP to Twitter plugin instead.

WordPress Cookie Domain

01-Mar-10

Set WordPress cookie domain in wp-config.php. define('COOKIE_DOMAIN', 'www.yoursite.com');