Can you make a CMS page with just two pages. Everything I have been seeing has been using like 6 pages. All I need is an admin page and a index page. So is that possible?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Sure. You can even make a CMS page with just one page – you’d call the page with different GET parameters (like
index.php?page=indexandindex.php?page=admin) and build conditions into the file to do one thing or the other, depending on what the value ofpageis.The question is how much sense this makes architecture-wise – the bigger a source code file becomes, the harder it is to manage. Splitting up larger classes and source files usually makes sense.