How do I remove news from a blog for my Platform?

0

I'm creating a business proposal management platform.

In the index (without session), I would like to print the company blog news. I am using Zend Framework V.3, and I would like to know a relatively simple way to accomplish the goal I looked at for the Index.

I started working with Zend a few months ago and I'm not yet aware of the modules that might exist to solve this idea.

    
asked by anonymous 13.06.2017 / 13:28

1 answer

0

If your company blog has RSS, you can read this RSS feed with Zend.

Zend RSS Readability Documentation (in English)

So you'll have blog posts as objects in your PHP code, and you can render them on your pages in whatever way you think is best and convenient. In addition, you'll always have the most current posts automatically without typing code to filter by period.

    
13.06.2017 / 13:56