<a href="https://console.cloud.google.com/apis/credentials">Get Your Api Credentials Here</a> <a href="https://calendar.google.com/calendar">Get your Calender ID</a> <?php include_once("wp-load.php"); function get_calender_events() { $params = array(); /*Get current date*/ $current_date = date('Y-m-d H:i:s'); /*Convert it to google calendar's rfc_format */ $rfc_format = date("c", strtotime($current_date)); $params[] = 'orderBy=startTime'; $params[] ='maxResults=100'; $params[] = 'timeMin='.urlencode($rfc_format); $url_param = ''; foreach($params as $param) { $url_param.= '&'.$param; } $calender_id = "calender_id"; $client_key = "client_key"; $url = "https://www.googleapis.com/calendar/v3/calendars/".$calender_id."/events?key=".$client_key."&singleEvents=true".$url_param; $list_events = wp_remote_post($url, ...
Display Top Level Categories Only
<?php
/*
*
* Display top level categories
*
**/
?>
<?php
$_helper
= Mage::helper(
'catalog/category'
) ?>
<?php
$_categories
=
$_helper
->getStoreCategories() ?>
<?php
if
(
count
(
$_categories
) > 0): ?>
<ul>
<?php
foreach
(
$_categories
as
$_category
): ?>
<li>
<a href=
"<?php echo $_helper->getCategoryUrl($_category) ?>"
>
<?php
echo
$_category
->getName() ?>
</a>
</li>
<?php
endforeach
; ?>
</ul>
<?php
endif
; ?>
Display Top Level Categories and ALL Subcategories
<?php
/*
*
* Display top level categories and subcategories
*
**/
?>
<?php
$_helper
= Mage::helper(
'catalog/category'
) ?>
<?php
$_categories
=
$_helper
->getStoreCategories() ?>
<?php
$currentCategory
= Mage::registry(
'current_category'
) ?>
<?php
if
(
count
(
$_categories
) > 0): ?>
<ul>
<?php
foreach
(
$_categories
as
$_category
): ?>
<li>
<a href=
"<?php echo $_helper->getCategoryUrl($_category) ?>"
>
<?php
echo
$_category
->getName() ?>
</a>
<?php
$_category
= Mage::getModel(
'catalog/category'
)->load(
$_category
->getId()) ?>
<?php
$_subcategories
=
$_category
->getChildrenCategories() ?>
<?php
if
(
count
(
$_subcategories
) > 0): ?>
<ul>
<?php
foreach
(
$_subcategories
as
$_subcategory
): ?>
<li>
<a href=
"<?php echo $_helper->getCategoryUrl($_subcategory) ?>"
>
<?php
echo
$_subcategory
->getName() ?>
</a>
</li>
<?php
endforeach
; ?>
</ul>
<?php
endif
; ?>
</li>
<?php
endforeach
; ?>
</ul>
<?php
endif
; ?>
Display Top Level Categories and Current Categories SubCategories
<?php
/*
*
* Display top level categories and
* subcategories of the current category
*
**/
?>
<?php
$_helper
= Mage::helper(
'catalog/category'
) ?>
<?php
$_categories
=
$_helper
->getStoreCategories() ?>
<?php
$currentCategory
= Mage::registry(
'current_category'
) ?>
<?php
if
(
count
(
$_categories
) > 0): ?>
<ul>
<?php
foreach
(
$_categories
as
$_category
): ?>
<li>
<a href=
"<?php echo $_helper->getCategoryUrl($_category) ?>"
>
<?php
echo
$_category
->getName() ?>
</a>
<?php
if
(
$currentCategory
&&
$currentCategory
->getId() ==
$_category
->getId()): ?>
<?php
$_category
= Mage::getModel(
'catalog/category'
)->load(
$_category
->getId()) ?>
<?php
$_subcategories
=
$_category
->getChildrenCategories() ?>
<?php
if
(
count
(
$_subcategories
) > 0): ?>
<ul>
<?php
foreach
(
$_subcategories
as
$_subcategory
): ?>
<li>
<a href=
"<?php echo $_helper->getCategoryUrl($_subcategory) ?>"
>
<?php
echo
$_subcategory
->getName() ?>
</a>
</li>
<?php
endforeach
; ?>
</ul>
<?php
endif
; ?>
<?php
endif
; ?>
</li>
<?php
endforeach
; ?>
</ul>
<?php
endif
; ?>
Comments
Post a Comment