With or without Wordpress [closed]

2

Good afternoon, I'm working ... well, actually studying PHP and would like to work with Brazilian laws.

I know the work is hard, though, but I am slowly getting it.

But I do not know if I use wordpress as the base of the site or if I only do it with php.

I want the site to show the laws with better formatting, to make it easier to understand its hierarchy, and other resources I hope to implement.

For example, when viewing an article, the site will tell you what law it is, which chapter it belongs to.

Does anyone have any opinions or suggestions?

    
asked by anonymous 18.05.2015 / 22:08

2 answers

3

I would particularly create my own program, with the features I wish, wherever I wish. But as you said you are still "studying" PHP, Wordpress should fall as a glove as it will greatly reduce your work, because creating your own CMS is something very good but requires a certain degree of knowledge not to do " bullshit ", the good use of OO, PDO (with prepared statements) and a good MVC project, not to get a" disorganized "system.

Now with Wordpress, you have great plugins, and if you already know anything about PHP you can create your own plugins for the purposes you require. So my simple advice is:

If you want speed and functionalities ready, go Worpress, now if you want something more "parrudo" with more 'complex' features then make your own CMS, but remember, I advise you to know what you are doing well if you choose the last option .

So now it's up to you! Good Luck!

    
18.05.2015 / 22:28
3

If you are going to deal with hierarchical content and if they are quite numerous, I would use wordpress, or some other CMS. Think of it, if not, you have to build all the query logic to your content, and this can take time. Try to model your problem using wordpress logic, and see if it is advantageous or not

    
18.05.2015 / 22:28