More fields Plugin is to enter additional input into the post, page etc. And that is Custom Fields in WordPress.
To use WP_Query()
for those Custom Fields input, you have to query for the meta_key.
<?php
//Query for only my custom field value
$args = array(
'meta_key' => 'your_field_key'
);
$wpse_query = new WP_Query($args);
while( $wpse_query->have_posts() ):
$wpse_query->the_post();
if( get_post_meta( $post->ID, 'your_field_key', true ) != '' ):
echo get_post_meta( $post->ID, 'your_field_key', true );
endwhile;
?>
Learn more from Codex: WP_Query()
– Custom Field Parameters.
More related answers can be found HERE.
Additionally, More Fields plugin is not actively maintained, so it’s not fit for updated WordPress. Better use other plugins like: Advanced Custom Fields, or the like.
Related Posts:
- FacetWP group listings by custom field [closed]
- Redirect to another page using contact form 7? [closed]
- Delete data from custom table when deleting a post
- How to fix slow comment query?
- Plugin does not create a custom table upon activation
- How can i list random post from multiple category?
- how do i remove posts from a WP_Query so the pagination is right?
- How to import my YouTube channel into WordPress?
- Is it possible to use WordPress as an online portfolio for text content? What kind of theme would I look for?
- Custom Field Template seriously messed up in WP 3.1.1
- My Category is too big on the Menu what can i do?
- how to load the language file in plugin?
- Plugin upgrade issue
- How to use get_theme_mod in gutenberg editor wordpress?
- Get IDs of Images from Gallery Block in InnerBlocks of a Custom Gutenberg Block
- How to embed HTML code from WP Coder plugin (or other) into Main Index Template of the theme
- Accessing post’s meta data based on user’s click of a post
- WordPress plugin – Error “Plugin generate 2890 characters of unexpected output when activated”
- How can I capture Memberpress user info after signup [closed]
- My plugin wants to update another plugin
- WooCommerce shop page orderby [closed]
- I have no idea “How change font for elements in widget?”
- View Private Published Page with URL Code (no login required)
- Get posts from WP_Query and format them on admin_head
- JS Support Ticket – Auto create WP account
- How to show Recent Page instead of Post?
- Not getting author rank when using return
- Remove Duplicator plugin from admin menu if not an administrator
- Input with spaces in Shortcode attributes overwritten by defaults
- How to query the custom fields by language?
- How do I “get the next 10 posts after post_id == x”?
- Add a custom form on the post-new.php admin page
- Removing customise fields during plugin uninstallation
- Edit Yoast SEO breadcrumbs output [closed]
- What’s the best way to implement AJAX in WordPress?
- How to Create a Custom Panel and Fields in Post Page [Plugin]
- Translating long texts with html formatting
- switched from query_posts to WP_query, not working now?
- AJAX search posts and pages
- How would I go about creating a user ranked post popularity page?
- Anonymous Postings
- Do widget options need to be escaped widget()?
- Is there any W3C compatible Share & Follow plugin?
- Does any one have Idea to get these functionalities with the plugin wp-multi-network
- DROP TABLE with uninstall hook not working
- Disable woocommerce cookies and delete cart data automatically
- className not populating in custom block
- How to fetch products with the price in a page on woocommerce using a form or live search with php
- Run plugins only on certain pages
- How to change this WP_Query to get all ProductIDs and not only specific one?
- Overide plugin files from child theme (/inc/ ) folder
- wp_generate_attachment_metadata is creating an empty array
- custom payment gateway in woocommerce failed to connect to remote api server
- Display encrypted content on my website
- Post category with counts been display like a menu
- Post custom Data value in The Events Calendar plugin [closed]
- Send reply with pre-prepared answers
- Best way to maintain and update 3rd-party WP plugin when developer is unresponsive?
- Save custom attributes of product in woocommerce
- Calling an attribute from a plugin shortcode
- Best place for short bio,image and button [closed]
- How to call WordPress function other files
- Use of Templates in a Plugin
- Insert content of a post into another
- Why can’t I access my Intranet LDAPS with NADI?
- External Domain on WordPress Multisite
- In the archive widget, how do I sort in between two years?
- WP_Query and NULL meta keys
- Customization API for plugin development
- how to use in custom single.php template using php?
- Fromcraft Plugin On click submit button [closed]
- creating a custom shop page display on archive woocommerce
- Setup page on first login on multisite
- polylang + category/tag custom language link
- Anspress Customization: How to show logged in user votes on a single answer?
- Custom wordpress Theme and Plugin repository
- Automatic Updates Individual Plugins Not Working
- How do I make a child theme I made POST through a 3rd party plugin?
- WordPress page and plugin list using sql query
- How create Group Blogs based on user created Groups
- How to create a custom shortcode based on the layout?
- Using AJAX to generate front end / viewer end pages
- How to redirect users to their profile after they successfully edit their profile
- Custom table naming/access convention for multisite: $table_prefix vs base_prefix or other?
- Add ALT attribute to Pin It Button image to pass HTML5 validation
- date/time-picker and file upload (image) fields for custom fields (e.g. with more fields)
- Getting Theme element into plugins page editor in wp admin
- WordPress as web application base
- Customize The Events Calendar to Include an Option to Expand for More Events Listings
- URL rewrite of independent plugin?
- Plugin for users to create their own ads like Google Adsence
- GeoMashup plugin: how to customize cluster markers / icons? [closed]
- How do I apply style to each category of a list?
- Add category selection to custom post type (plugin)
- WooCommerce search products between price range using WP_Query
- ACF: post query, hide duplicate values [closed]
- changing posts layout in ultimate member profile plugin
- “No Add Button” for me to customize my WordPress with themes and pluggins
- Translation plugin to translate another plugins
- Login Customizer doesn’t change the background of the register form