could you please post the link to your blog and the complete php-file of your new page?
Hi,
I can’t tell you the url because my site is closed for maintenance. Do you want the source code of this page?
<?php get_header(); ?>
<div id=”content” class=”col-full”>
<div id=”main” class=”col-left”>
<?php if ( get_option( ‘woo_breadcrumbs’ ) == ‘true’) { yoast_breadcrumb(‘<div id=”breadcrumb”><p>’,'</p></div>’); } ?>
<?php if (have_posts()) : $count = 0; ?>
<?php while (have_posts()) : the_post(); $count++; ?>
<div class=”post”>
<h1 class=”title”>” rel=”bookmark” title=”<?php the_title(); ?>”><?php the_title(); ?></h1>
<div class=”entry”>
<?php the_content(); ?>
<?php edit_post_link(‘Editar’, ”, ”); ?>
</div>
</div><!– /.post –>
<?php if (‘open’ == $post->comment_status) : ?>
<?php endif; ?>
<?php endwhile; else: ?>
<div class=”post”>
<p><?php _e(‘Sorry, no posts matched your criteria.’, ‘woothemes’) ?></p>
</div><!– /.post –>
<?php endif; ?>
</div><!– /#main –>
<?php get_sidebar(); ?>
</div><!– /#content –>
<?php get_footer(); ?>
I can’t see the tag <?php feedreading_blogroll(); ?> at all. Where did you put it?
Hi,
On WordPress dashboard I go Pages > add page and I use this code:
<ul>
<li><?php feedreading_blogroll(); ?></li>
</ul>
And I look this:
[Large code excerpt removed by moderator. Per forum rules, please use the pastebin for all large code excerpts. It works better anyway.]
Looks like the image:
http://img6.imageshack.us/img6/8172/linksl.png
Thank you!
No, that is the not correct way to do it.
Please go to my wiki and read the tutorial on how to create a linkpage.
You have to create a new php-file, i.e. make a copy from your page.php and name it page-blogroll.php, then add the tag directly to the php-code.
Read my tutorial – it’s all described there!