You can use the following SQL query
SELECT * FROM wp_posts a, wp_term_relationships b, wp_terms c WHERE a.post_status="published" AND a.ID = b.object_id AND b.term_id = c.term_id;
This will list all the post that is in the published state and then its terms.
You can add limits and offsets to limit the number of records.
Related Posts:
- Apply class to every paragraph that holds image?
- Remove “Insert from URL” link in Media upload – WP 3.5
- How to change the wp-login.php page title?
- Hide custom image sizes from media library
- Set media upload attachment link to none and hide it in WP v3.5
- How to set custom cookies before output
- How can I hook into and edit the text of a wp_nav_menu tag?
- Rename image uploads replacing “width” and “height” in filename with “medium”, “large”, “small”
- Rename image uploads with width in filename
- How to make an meta_query optional?
- How to overwrite youtube embed?
- Check if page parent has certain template
- How to remove “out of stock” variation options from size dropdown in woocommerce?
- Filter the blog title displayed in the header
- wp_get_attachment_url filter won’t accept two arguments
- body_class filter – Is there a better way to write this code?
- Why do filters/actions require an argument count?
- Filter link to existing content suggestion
- Getting my head round WordPress filter
- How To Change The Html of Products filtration sidebar in Woocommerce?
- How to set a custom path, for ajax image upload folder in admin?
- Filter get_the_title to remove certain characters?
- Get posts with at least one category in common with current post?
- How to use return in my custom function instead of echo
- When using the_author hook, how can I determine the PHP file that generates each call to `the_author()`?
- WordPress php filter admin_body_class not working
- Combine two filters into a single call
- Remove a filter added by a plugin
- Change the site tagline (or similar) based on current page
- Handling Body class based on Template
- WooCommerce Related Products by Attribute
- Custom filter in admin edit custom post type responding with invalid post type?
- Add a class to the anchor tag on HTML5 gallery
- add_action shortcut?
- How to control WordPress image metadata (using Imagick)?
- Add data attribute to each li in menu
- Show prices with tax in Woocommerce Mini Cart [closed]
- Ajax category filtering products default show all
- Add a specific part of current category page url to shortcode
- Removing “wpautop” (auto tags) only on certain pages?
- Remove the first 5 characters of the_title and orderby that
- Print last modified date only on posts
- WordPress Gravatar filter is removing my custom attributes
- Change tinyMCE editor to allow marked content when pasting from Word
- How to debug this search & replace strings snippet?
- Hide Featured Image Meta Box on Editor Screen
- Add item to top of menu using a filter in functions.php
- How to make modifications only to certain elements of an HTML string on the server-side?
- Filtering a function’ output for a new continued function
- Deleting Certain terms from appearing on the front end as links
- Add meta tags to a custom header
- Ajax filter button display all posts
- How to append to an array and return the results in a filter?
- Custom query vars filters problem with pagination
- Filter by field with array value in ACF on WP REST API
- wrap a span tag around author’s post count
- Get the name of menu item with wp_nav_menu
- update_post_meta() not saving data inside of save-post filter
- How to add aria role and schema markup to custom walker container
- Must filter functions receive all arguments passed to them?
- How to internationalize header image?
- User filter posts by year
- Filter wordpress posts without searching the keywords in the post content
- Variation prices breakdown only for single product page
- Remove Author Links
- How to remove get_header From all single pages in wordpress with functions.php without plugin?
- Apply function.php filter only if url not has /amp/
- How to use apply_filters() inside a plugin class?
- Change lost password url to a mailto URL in WordPress
- How to edit post meta data before publishing the post it self wordpress?
- Multiple Tag Filtering
- Add a top bar to a wordpress theme without editing the header.php file?
- Should I set a page as “No-index” if I include it’s content within the front-Page.php via this method?
- How to change href of a Widget menu item link?
- Reload page with a different shortcode when a user selects from a dropdown
- WordPress Ajax filter: Create two loops for different output styles?
- How to disable sub menu items from being created?
- How to display custom seo title before the loop?
- How can i style “echo apply_filters”
- Adding body class to html tag that already has language attrubutes?
- Add class to all meta boxes for a custom post type
- How to remove title tag with this filter
- str_replace not preserving whitespace
- Custom theme: adding unwanted tags in the content
- Apply filters when loading post via ajax
- Add custom filter to register data in array
- Woocommerce Price Text
- Limit Taxonomy Parents
- Display a post based on its metabox selection
- dynamically filter by category via sub-menu
- Display a list of users with avatar filterable with alphabets
- How to add custom checkout field in user details mail template
- Keeping the previous get value and add another value when submitted
- For each loop will not append to the_content hook
- Assign new post author IF another user in custom field on post transition
- Modify meta data before saving to database
- How to change wp-admin and wp-login urls
- How to pass value to add_filter wpcf7_form_tag from another function?
- Custom Filtering date with newsletter
- Is there a hook that I can use when a fatal error occurs?