How to remove news from a blog for my Platform?

Asked

Viewed 26 times

0

I’m creating a platform for managing business proposals.

On the index (no session), I would like to print the news of the company’s blog. I am using Zend Framework V.3, and I would like to know a relatively simple way of achieving the goal I envisioned for Index.

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

  • I don’t know how to answer because PHP is not my specialty... but I thought of something now that might help. The company’s blog has an RSS feed?

  • Thanks for your help :) Yes, it has.

  • So maybe this will help. You can consume RSS with Zend. So you have blog posts as objects in your PHP code, and can render on your page as you want.

  • Thanks :) This is exactly what I was looking for !

  • I turned it into a response.

1 answer

0


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

Zend RSS reading feature documentation (in English)

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

Browser other questions tagged

You are not signed in. Login or sign up in order to post.