Quantcast WordPress | Source and Code System
Browsing articles tagged with " WordPress"

SEO Learning

Jul 25, 2010  ¦¦  by sky  ¦¦  SEO  ¦¦  38 Comments
Testing Keywords with Google AdWords Test Before You Build Here’s a simple tip that could easily save you 12 months of work: Setting up an effective SEO campaign in a competitive market can be a long drawn out and expensive process. Worse yet, if you are focused on the wrong keywords, you might need to start over again after you find ...

Installing Magento on Localhost

Jul 25, 2010  ¦¦  by isr.coder  ¦¦  C M S, Magento  ¦¦  33 Comments
This is tested on both XAMPP (http://www.apachefriends.org) and WAMP (http://www.wampserver.com): Note: on XAMPP the apache directory is just apache while on WAMP the directory is apache2 (please change the instructions below accordingly) Note: check version of PHP, which you will use. Magento not work with PHP 5.3 (for XAMPP, use XAMPP for Windows Version 1.7.1 ) 1) Download and ...

Get Category or Page Depth or level

Jun 17, 2010  ¦¦  by admin  ¦¦  WordPress  ¦¦  46 Comments
get_depth() As far as I know there is no function in Wordpress that return the page or category depth. I created a function that returns the depth of a page or category. The depth is how many levels from the root the page or category in its hierarchy. The root level number is 0. <? php function get_depth($id = '', $depth ...

Code for custom field Image in recent post List

Jun 17, 2010  ¦¦  by admin  ¦¦  WordPress  ¦¦  32 Comments
<h3>Recent Post</h3> <div> <!– use a custom field for image , Here the custom field name is = “newReleaseThumb” –> <?php $myposts = get_posts(‘numberposts=5&offset=1′);foreach($myposts as $post) > <div style=” width:100%; float:left; border:#FF0000 0px solid; padding: 5px; margin-bottom:2px; background:#0000FF;”> <div style=”width:95px; float:left;”> <?php $thumbnail = get_post_meta($post->ID, ‘newReleaseThumb’, true); ?> <a href=”<?php the_permalink() ?>” title=”<?php the_title_attribute(); ?>”> <img src=”<?php echo $thumbnail; ...

Select Fix Category Post With New Custom Query Code

Jun 17, 2010  ¦¦  by admin  ¦¦  WordPress  ¦¦  6 Comments
<?php $my_query = new WP_Query(‘category_name= Trailer&showposts=4′); ?> <?php while ($my_query->have_posts()) : $my_query->the_post(); { ?> YOUR DATA <?php } endwhile; ?>