Skip to content

Instantly share code, notes, and snippets.

View kayintveen's full-sized avatar
💻

Kay in t Veen kayintveen

💻
View GitHub Profile
@kayintveen
kayintveen / Wordpress-get-featured-image
Created January 18, 2013 20:18
Wordpress: get featured image
@kayintveen
kayintveen / wordpress-featured-images-except-featured
Last active December 11, 2015 07:39
Wordpress: featured image except featured
@kayintveen
kayintveen / magento-homepage
Created July 15, 2012 11:59
Magento if homepage condition
if ($this->getUrl('') == $this->getUrl('*/*/*', array('_current'=>true, '_use_rewrite'=>true)) ) {
$_is_home_page = true;
}else {
$_is_home_page = false;
}