What about using the WordPress function get_ancestors()
, which
Returns an array containing the parents of the given object.
To be exact an
Array of ancestors from lowest to highest in the hierarchy
We can easily create a function to return a list by using implode
to do so:
function wpse185971_get_ancestors_list(
$object_id,
$object_type="category",
$separator=","
) {
$ancestors_array = get_ancestors( $object_id, $object_type );
$ancestors_list = implode( $separator, $ancestors_array );
return $ancestors_list;
}
Related Posts:
- How to customize the_archive_title()?
- How to override parent functions in child themes?
- Solution to render Shortcodes in Admin Editor
- Trying to use add_action and do_action with parameters
- Define page template in wp_insert_post
- Get a list of all available fields in the User Profile
- How do I use the WP image functions in a page template?
- How to remove Customize from admin menu bar after WP 4.3
- Child theme functions.php do I use php open and close tags?
- Modify Admin Bar Link
- why doesnt is_home() work in functions.php
- WP 4.4. responsive loads normal image after loading the responsive image
- Insert Ad Code in the Middle of a Post
- Enabling shortcodes for custom fields
- Passing variables to templates (alternatives to globalizing variables)
- Load post with a different template?
- How can I tell if I’m on a login page? [duplicate]
- Add options to featured image
- Get Category and Excerpt From wp_get_recent_posts
- Programmatically Add Font-Awesome Icons to Category Widget
- Dynamically Register Sidebars For Each Top Level Page
- Two different menus for two different locations?
- Error after editing functions.php
- Run Product Filter Javascript On Page Template
- Most efficient way to get custom database records from 20 buttons and 20 tables?
- How to add a column to the Trash page?
- Custom registration URL lost when user makes signup mistake
- Images uploaded using media uploader are appearing upside down
- Empty Date Returned on my function
- Woocommerce Attributes pulling in wrong data
- How to get the post_name when in preview?
- “is_new_day()” alternative for years?
- Can’t check if a post has thumbnail adding filter to get_post_metadata()
- How to hook into a function offered by a plugin?
- Echo tags used to describe the theme
- Change position of media in admin menu
- How to Display Frontend CSS for Administrator only
- How can I change a function in a parent theme via a child themes functions.php
- How can I remove the main description text box in a Woocommerce product editor page? I only use the “Product short description” text box [closed]
- Automatically assign video ‘poster’ value to ‘filename’ for archive listing
- How can I make a widget shortcode to control all the widgets?
- admin-ajax.php + load-scripts.php hanging for minutes
- Unique sequential reservation code
- new_excerpt_more link not working properly
- Where to add the permalink in this function?
- Show image exactly defined to a width
- Change CSS for logged in users
- Always the Latest google jQuery instead of default WordPress jQuery
- Modify post filter to set custom number of posts per page and exclude child posts
- Remove “Published On” inside wp-admin
- Changing parent element’s class or style
- How can we know we are not in edit page
- Adding jQuery datepicker to Custom Post Type Metabox [closed]
- User function to return multiple get_post_meta()
- wordpress acts like functions.php doesn’t exist [closed]
- How can i unload effect.min.js file?
- How can I pass a shortcode value to the head in wordpress functions.php
- Native gallery custom html output
- WordPress wraps span tags into p tags
- Auto scroll to id on page load on all pages except home page. Only do this on mobile
- why is this function firing on all child menu items as well?
- Custom styles in Tiny MCE with an external CSS file
- I changed Functions.php and now I get “cannot decode raw data NSURLErrorDomain:-1015” (not blank)
- How to add schema markup to WordPress menu function
- Use add_action within template
- Replace admin header logo with an image
- contact form in template with jquery,validate and ajax
- Changing the header image using WPML
- current_page_item is missing inside wp_nav_menu
- How to require a config file in a template and in function.php?
- Issue passing action class to nested function. Admin Columns
- Populate Product Regular Price with a calculated ACF Field Value
- Header menu aligned right on all pages except for single-post page [closed]
- How Do I Unhook This Parent Theme Function?
- How to make the RTL.css the dominant css code?
- How to create an array if ’empty’?
- Auto remove tags on certain date
- get_field() with ID in one signal filter not working
- i can’t use wordpress functions in ajax loaded php file
- Woocommerce – Switching Price for Category
- Remove External Links from WordPress posts Using add_filter() in Theme functions.php
- How to create a WordPress Customizer Button to Clear a Cache?
- Is there any requirements to do socket programming with WordPress?
- Adding A New Widget to WordPress Disables the Existing Widgets
- Slider Thumbnail Size Issue [closed]
- same get_posts function works diffrently in tag.php and functions.php
- Javascript and Stylesheet in child page
- Call custom field using php
- Problem in outputting shortcode
- Retrieve array of attachment IDs attached to a given Post ID
- add_theme_support not outputting thumbnails
- How to get tags and categories?
- Archive.php, and post_is_in_descendant_category
- update_user_option not working as expected
- Having problems loading Jquery in functions.php
- How do I access variables outside a function [closed]
- How can I append and prepend something to all post hyperlinks without using ::before or ::after? PHP hook solution?
- Retrieving next_post_link() and previous_post_link() in functions.php
- How to add height and width dimensions automatically to archive descriptions
- Setcookie not setting cookies anywhere except admin