Codeigniter Navigation

Hi all.I am not sure I am posting in correct forum or not, but experts over here might help me :slight_smile:

Hi have got a code of codeigniter site, and I need to convert it in wordpress.This seems to be a complicated precess for me as I dont have slightest idea about codeigniter.

I would like to know how does the navigation works so that I could open the file and use it for reference.

Like, menu item Buy shows link:http://www.yoursite.com/landing/803,
lease:http://www.yoursite.com/landing/806
and Our Results:http://www.yoursite.com/listings/our

Can anyone tell me what does this mean?

I’m afraid your question is not very clear.

You are probably better off starting from scratch, TBH.

I would like to know how does the navigation works so that I could open the file and use it for reference.

You could just view the HTML source code in your browser and grab that to start with. Then rebuild it in WP.

Can anyone tell me what does this mean?

What does what mean? It’s not really clear what those links are for.

Ok.Sorry for that.Talking about source code, the link showing is as follows:
<a href=“./buy” class="sprite ">Buy</a>.But there is no file like “buy” anywhere.And I am not at all aware of codeigniter except I know it is mcv framework.So at this point,I just want to see the logic or function that is used on certain page, so that I can construct it again in WP.

Yes, I suspect they work quite differently, so you’ll just need to create a new page in WP called /buy and reconstruct that page from the HTML of the original page. (That’s what I suspect, anyhow.) You could check the CodeIgniter docs for how pages are constructed, I guess, as those docs are pretty nicely written.

Thanks for your reply ralph.m.I guess its the only option to go for their documentation.
So far I came to know that, in controller folder, a php file is loading through $this->load->model(‘db_props’); and I guess it is loading db_propes.php from model folder which consists of several sql queries.