1
votes

I have moved a joomla site to wordpress with fg joomla to wordpress (wordpress plugin) free version. Now i want to get the list of all of the content(articles) with their id, link, path and alias. I am new with joomla so i also want to know the difference between the alias on new article and the alias which we give at the time to add it in menu item. Thank in advance. Can anybody also tell me the common attribute among the jos_categories, jos_menu and jos_content to join the table and find the list of all articles with id, alias, path and link?

1

1 Answers

0
votes

The articles of joomla sites and its all required details can be found on the #__content and #__categories tables .

The article id, alias(path and links) is the url of the article.

#__content table have catid that connect which category those articles are (id in #__categories).

There is no direct connection between #__menu and #__content. the Joomla site may use an article link on the menu system with url or single article type those you can find on #__menu table with link field like com_content or something.

When you are migrating to WordPress all articles you can consider as post and its link(alias) as WordPress permalink

Hope it make sense..