for example, i want to add the following php code to x-cart:
Code:
<?php
// Include Wordpress
define('WP_USE_THEMES', false);
require('../../wp/en/glasses/wp-load.php');
query_posts('showposts=5');
?>
<?php while (have_posts()): the_post(); ?>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php the_excerpt(); ?>
<p><a href="<?php the_permalink(); ?>">Read more...</a></p>
<?php endwhile; ?>
how to do?
tks.