Share<?php $recent_posts = wp_get_recent_posts(); foreach( $recent_posts as $recent ) { echo ‘<li><a href=”‘ . get_permalink($recent[“ID”]) . ‘” title=”Look ‘.esc_attr($recent[“post_title”]).'” >'[…]
Read moreAuthor: admin
Linking CSS/JS file in WordPress
Share<link rel=”stylesheet” href=”<?php bloginfo(‘template_url’); ?>/css/customerCare.css”>
Read moreShow All Categories as Links
Share<?php $categories = get_the_category(); $separator = ‘ ‘; $output = ”; if($categories){ foreach($categories as $category) { $output .= ‘name )[…]
Read moreWorkflow for Importing Customers using CSV
ShareIf you’re reading this article, you must either be interested in importing product or customer information or export it. The[…]
Read more