Need WordPress PHP Help

FreakenSEOsmh

Power Member
Joined
Jul 31, 2017
Messages
587
Reaction score
401
Hello BHW

So I have this URL that am trying to export data from using WP ALL EXPORT plugin but am not really sure how am going to target it, its called WP admin_submenu_page

mysite.com/wp-admin/admin.php?page=erp-crm&section=companies&section=companies

I need to create a query that will target this, not that familiar with these sorts of pages. Do you have any idea how I can go about doing so?

Your input is much, much appreciated BHW
 
What are you trying to do exactly, maybe i can help with a different and more simple solution

am trying to export data using wp all export plugin as a CSV file. It has an option to export using Wp_query results as when i try to export pages, results from the URL above don't show up... I have like 400 records that am trying to export.


Please let me know if you need any more information and I will gladly provide, thanks.
 
go to phpmyadmin and export your full database

that would be an option, but i would like to export only the data on that specific url. Thank you so much for your reply Biycchu
 
am trying to export data using wp all export plugin as a CSV file. It has an option to export using Wp_query results as when i try to export pages, results from the URL above don't show up... I have like 400 records that am trying to export.


Please let me know if you need any more information and I will gladly provide, thanks.
Looks like it's some different export,
sorry, never used that plugin before, but i'm sure someone here did before
 
Looks like it's some different export,
sorry, never used that plugin before, but i'm sure someone here did before

doesn't need to be the same exact plugin, i just need to export data from a WordPress Admin sub-menu.. am open for anything, other plugins or just how to actually wp_query the link above.

Still browsing on stack overflow to get the right answer, though i think am asking the wrong question. @phpbuilt save meee
 
You would be better off just going to the Wordpress database and going into your table and exporting it from there.

It's still unclear what you're trying to do - if you're trying to export all data saved to a table from a plugin for your database, PHPMyadmin and SQL commands will be a lot faster than trying to build out something in PHP to do it.

Once you have the SQL command, you can even create a quick PHP script to execute it on a regular interval - if you're after automation.
 
Back
Top