Jump to content

Search the Community

Showing results for tags 'rss feed'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Welcome to ProcessWire
    • News & Announcements
    • Showcase
    • Wishlist & Roadmap
  • Community Support
    • Getting Started
    • Tutorials
    • FAQs
    • General Support
    • API & Templates
    • Modules/Plugins
    • Themes and Profiles
    • Multi-Language Support
    • Security
    • Jobs
  • Off Topic
    • Pub
    • Dev Talk

Product Groups

  • Form Builder
  • ProFields
  • ProCache
  • ProMailer
  • Login Register Pro
  • ProDrafts
  • ListerPro
  • ProDevTools
  • Likes
  • Custom Development

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 3 results

  1. Hello community, I have project for news site where I would use rss feed generator, to import news from other sites. Site functionality would be like in this script http://pluscss.com/demos/aggregator-pro/ I find this module http://modules.processwire.com/modules/markup-rss/ written by Ryan. So I have question about this module, is anyone try it, can it be used for project i describe above? There are a lot wordpress plugins, and cheap scripts on internet for rss generator, but I want to create one with processwire.
  2. Hello everyone, I'm designing a website for a musician and was wondering if it's possible to create something like this with PW: http://cherylcole.com As you can see, the "news" are basically a set of custom post types: articles, video, gallery... Would be too complicated to achieve this with PW? And is it possible to create multiple rss feeds for each section of the site? (articles feed, gallery feed, etc) Any help will be *highly* appreciated! Cheers
  3. I'm looking at getting an RSS feed on my blog page, i'm unsure how to incorporate the example code provided from the RSS Feed Module forum post into my template. Is it mean't to go on my blog page template or exist as a separate template? <?php // retrieve the RSS module $rss = $modules->get("MarkupRSS"); // configure the feed. see the actual module file for more optional config options. $rss->title = "Latest updates"; $rss->description = "The most recent pages updated on my site"; // find the pages you want to appear in the feed. // this can be any group of pages returned by $pages->find() or $page->children(), etc. $items = $pages->find("limit=10, sort=-modified"); // send the output of the RSS feed, and you are done $rss->render($items);
×
×
  • Create New...