Membership is FREE – with unlimited access to all features, tools, and discussions. Premium accounts get benefits like banner ads and newsletter exposure. ✅ Signature links are now free for all. Share your own thoughts and experience, accounts may be terminated for violations.
  • Welcome to AcornDomains.co.uk, a friendly community for UK domain investors, developers and anyone interested in domain names.

    Whether you're looking to buy or sell domains, learn more about the UK domain market, get feedback on your names, or simply chat with other domainers, you're in the right place. AcornDomains has been bringing together people from across the UK domain industry for many years, from complete beginners to experienced investors.

    Have a look around, join the discussions and, if you haven't already, create a free account and introduce yourself.

How does he do that?

Status
Not open for further replies.
Hi,

Thanks, but I understand how to convert feeds to posts, but I do not know how he pulls the data to display all posts on one page?
 
Yeah I have thought about datafeedr just checking it out now, not convinced on how safe it is to use, what kind of footprint it leaves in Google etc
 
Yeah I have thought about datafeedr just checking it out now, not convinced on how safe it is to use, what kind of footprint it leaves in Google etc
I don't think there are any specific url patterns google can pick up on as you can rename all categories and shop names, as well as all datafeedr files aw well.
 
I have seen that thread too, still doesnt help...I understand how to convert feeds, just not how to display them as above.
 
Create a plugin that queries your imported datafeed and displays the quantity of results you want, in the format you want them. Add a few extras for paging and filtering (ie. display search reuslts, category etc.) and you're there.

A plugin is a good way to do this as then you can sit it on any WP page and be theme agnostic.
 
I was also looking for something to do this also and found a bit of code on a forum somewhere - I haven't had a chance to try it yet, so if you give it a go and it works please let me know.

You might want to change this to suit your website/application:


<div class="new-wrapper">
<h2><a href="the permalink stuff do not copy this"><?php the_title(); ?></a>
//etc etc etc - whatever you need inside the loop
</div> <!-- closing div of new-wrapper -->

[[[eg:]]]

<div class="new-wrapper">
<h3><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
<p>By <?php the_author_posts_link(); ?>, <?php the_time('F j, Y'); ?></p>
<p><?php the_excerpt(); ?></p>
<?php comments_popup_link('Post a comment', 'One comment', '% comments', '', 'Comments off'); ?>
</div> <!-- closing div of new-wrapper -->


Then your theme's style.css, you add the following declaration:


.new-wrapper { float: left; width: 200px; height: 200px; margin: 0px 20px 20px 0px; } ((change width, height, margin values as you like))
 
Status
Not open for further replies.
Top Bottom