You should pass in the id of the post you want to delete as an argument of the delete_post() function rather than relying on obtaining it via global $post within the function itself:
<?php echo delete_post($section->ID); ?>
Then in your delete_post() function you can use the passed-in argument like so:
function delete_post($sectionid){
$deletepostlink= add_query_arg( 'frontend', 'true', get_delete_post_link( $sectionid ) );
if (current_user_can('edit_post', $sectionid)) {
echo '<span><a class="post-delete-link" onclick="return confirm(\'Are you sure to delete?\')" href="' . $deletepostlink . '">Delete this </a></span>';
}
}
Related Posts:
- Dynamically Override Fancy Title – Part II
- When should you use WP_Query vs query_posts() vs get_posts()?
- order by numeric value for meta value
- How to query for most viewed posts and show top 5
- WP_Comment_Query pagination, delving into the unknown
- Sort posts by category name and title
- What is the most efficient way of querying posts based on visits and date for current day?
- Custom WP_Query order by post_meta and (author) user_meta
- WP_Query for WooCommerce Products
- Perform query with meta_value date
- Highlighting Sub topic in a post?
- Which custom query am I in and how can I access its properties & methods?
- how to retrieve specific product attribute value in an sql query?
- WordPress custom archive page
- WP_query category__in not working, only pulls from first category
- Splitting the main query in multiple loops with query_posts and/or pre_get_posts?
- Retrieve or Query Pages by ID
- wp_get_post_terms of cpt but not duplicates if they are used more than once in the loop
- How do you query wordpress posts using a math formula between multiple meta field values?
- How to implement time filter to show random post 1 month for one category and 3 months for other categories
- How to do a query on custom taxonomies that is uncategorised?
- Empty tax_query array returns an empty array
- Meta Query for specific months
- How do I search inside specific taxonomies in WordPress
- Different string for specifed post type on posts listing at homepage
- How to get to a specific position in wp_query?
- if/else on custom query gives 200 OK when condition not met?
- How to correctly pass values to wpdb->prepare()?
- Setting get_queried_object
- Why is variable not working on custom sql query using wpdb?
- remove query arg from url after set query
- difference between like ‘%%%var%%’ and ‘%var%’
- Get all products which have both product category
- unable to retrive parent page information
- How to detect if query is runned from widget?
- How to display user order by role
- creat filter with wp_query
- WP Query related posts by tags
- Order by summing multiple values
- Check if loop has any categories?
- No results found from a $wpdb->get_results() query when trying to join more than one meta key query
- How to get list of posts from permalinks?
- Is there a reason why Pages are not publicly_queryable?
- Check return value of get_posts
- Exclude some authors from query
- Query only the posts with a post format of “audio”
- pre_get_posts – Trying to get property of non-object warning
- WordPress query posts with multiple post_meta data
- Assign custom parameter to each post in query
- How to overwrite orderby with add_query_var
- Get a list of posts by specific category
- How to check the array values, what WP_Query has brought to me?
- How to add custom meta to ‘pre_get_terms’?
- Shortcode for custom query not returning results when attributes are added
- Should I reset $wp_query?
- Yoast primary category query modification
- Update query for wp_posts and wp_postmeta
- Get specific ACF key and value from all posts – no access to DB
- How can i show pagenavi in my author.php?
- Include one page/post into query which is already returning posts
- I am officially missing something about transient posts
- Insert images into wordpress post with a query
- WP_Query meta compare must include ALL array values
- Start Query from 2nd Post without offset
- Display upcoming events in the next 30 days by querying posts with timestamp in custom meta
- pre_user_query vs pre_get_posts
- Adding nofollow to all the post links in get_posts with pre_get_posts or WP_Query
- Meta query orderby meta_value_num sorting by role first
- How to query users by post count no less than 10
- Add to search posts query array with post IDS which will appear first
- wordpress query returning unexpected results
- WP_Query about meta_key and its array value
- Create global array to compare inside a query
- How to show terms from another taxonomy
- My entry results are not consistently alphabetized
- Ignoring ‘a’ when sorting posts
- How can I display a query in a page?
- Custom query for tag and custom tag from 2 post type
- wpdb get_results() returns only 2 rows
- Filter posts/pages by user_role array
- WP_Query secondary query failing
- Search Functionality broken by the wp 4.2 update
- Issue attempting a wp_query_posts with tags
- add_query_vars does not work
- Retrieve posts in custom post type and specific taxonomies
- query by meta value then date and not empty meta value
- Custom post types loop on a page template
- Get the number of rows from $wpdb->get_results not working
- Parsing External Table Arguments
- Get Child Custom Post Content on Single.php?
- difference between methods of query
- Does wp_query and query_posts affect website performance? [duplicate]
- Query posts by meta value and sort by another meta key
- How much does $wpdb->prepare(), then $wpdb->query() VS straight $wpdb->query(), can slow down the load time of whole page
- how to use transient method?
- Show post like this image in my newssite [closed]
- Pre_get_post on CPT archive page
- Get posts that were most recently tagged
- Woocommerce set loop_shop_columns to be 3 in the main shop page loop only and 4 otherwise
- How to get posts that have certain meta key value and order based on another meta key’s value