Your problem isn’t line 780 of ../wp-includes/class-wp-query.php
So it’s a little bit hard to help because you’re not showing the actual code that’s at fault.
But you’re probably trying to reference a post category by its data object instead of using the integer id.
For example you might have something like this:
$mycategory=get_category_by_slug('a-category-slug');
$args = array( 'posts_per_page' => -1, 'category' => $mycategory);
$myposts = get_posts( $args );
But $mycategory
is an object, not an integer value.
You would need to add ->term_id
to get its integer value:
$mycategory=get_category_by_slug('a-category-slug');
$args = array( 'posts_per_page' => -1, 'category' => $mycategory->term_id);
$myposts = get_posts( $args );
Related Posts:
- Is There a Difference Between Taxonomies and Categories?
- WooCommerce: List All Categories
- Get rid of WordPress category, tag and author archives?
- Filtering categories in the permalink structure
- Wrap Post count in a span
- wp_nav_menu not appearing for a couple pages
- Why aren’t sub-categories nested after creating post in the WP Admin?
- Preventing index.php?category_name=something from redirecting
- How to get category id of current post?
- Trash bin for categories
- Categories’ hierarchy in URL
- Display one category in one page
- How to get next previous category in same taxonomy?
- Show children of top level category only
- is_archive() content being shown instead of is_category()
- Check is category parent or not from its ID
- Which php file lists all the post of a category
- Dropdown category filter
- Filter out posts before display category count
- Category page shows Oops! That page can’t be found
- How to show in search results posts with a particular tag in a particular category?
- Category vs Tag vs Table
- How to find the number of Tags a post has?
- Multiple menu items highlighted
- How can I enable a TINYMCE rich text editor in the admin interface?
- Add title, post content, and category like add_post_meta and update_post_meta
- wordpress wp_list_categories
- How to create button to direct to certain category
- Highlight wp_nav_menu when category is selected
- query order by category
- How to make 2 tag feeds show up on 1 page?
- Best way of getting WooCommerce category path
- Display the last post by each category?
- Get link which associated with a specific category and tag
- How to disable default category linkbuilding?
- Order categories by name or view count
- How to assign posts without any category to the default category
- Show only first category name in RSS?
- Give a page priority over a category that has the same name?
- Filter $cpt categories to omit certain category
- Yearly Archive for Categories with dropdown
- How to rewrite the post URL according to the category?
- get_categories listing foreach with children
- ajax for filtering posts by category in wordpress loops
- Create category post shortcode
- Undefined property: stdClass::$id when retriving term ID
- Wacky taxonomy in wordpress
- Question on using custom structures for categories
- Output the text before category
- Change div background acording to the selected category
- Why title_li =” not working
- Wrong category nice name is displayed on archive page
- Custom Permalink with child categories creating 404
- Cannot filter categories by parent category
- Redirect year month day postname permalink structure to category postname structure
- Show all sub categories?
- Category nicename inside loop in wordpress
- Exclude all subcategories in the_category (post)
- Generating a feed of all but one category of posts
- Displaying another main nav menu for specific category
- Exclude categories from list (wp_list_categories)
- How to display the 5 latest post titles but allow only 1 in there of a specific category
- WordPress: Using the category slug get the category ID using mysql query
- How to add categories using mysql
- Posts made to category don’t show up (do show up on frontpage)
- Display all categories but only if they have posts in them that have a specific tag assigned
- How to fix select filter on category
- wp_dropdown_categories() works correctly but the list is not filtered in admin for custom post type. What is the problem?
- Migrate the posts of a category to another blog as a custom taxonomy
- Add $args to wp_list_categories
- How to hide a category or tag everywhere EXCEPT for use with get_posts
- Check with Jquery if second level checkbox from categories are checked
- In if…else condition, the else statement shows even if if statement is correct
- Regarding Tags And Categories
- How to show entries related to main category
- selecting categories that have products with tag/category
- Restrict retrieved terms by category?
- How to get WooCommerce Product Categories and its children’s children?
- Get category from slug list
- Media Library Category Exclude Tree
- When category name and title are the same … WP will select archive.php instead of single.php
- Re-coding category-template.php to go to custom URL
- Category removal – Portfolio Category:
- Cant get unique_array() work on get_the_category() foreach loop
- How to Change Sort Order of default WordPress Catgory Widgets?
- Show One Level Category id
- Catch 404 after changing permalink structure from /%postname%/ to /%category%/%postname%/
- Custom filters inside a specific category?
- $args Orderby The number
- Function to list posts from current post’s category fails in WP 3.8
- Multiple parent categories
- Formating content in category.php
- How to use Greek characters/letters in a query?
- Getting categories to change appropriately when using $cat = ‘ ‘;
- how to call the category of the post
- why is the delete option missing from just one category?
- Echo Category In Loop
- Get all categories
- Show category post order ASC
- Replace category titles inside RSS feed