Download the PHP package cnp/wp-highest-ancestor without Composer

On this page you can find all versions of the php package cnp/wp-highest-ancestor. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package wp-highest-ancestor

Section Information

This function returns section information, which varies depending on the type of page you're viewing. Several conditional checks are combined into this one function so that you can get comprehensive section data form one function, rather than an exhaustive list of conditional statements.

It supports custom post type pages: e.g., if you have a CPT of "movies," creating a page with the slug of "movies" will return data from the page, rather than data from the post type object. This is useful for keeping complicated post type archive content in the CMS.

Parameters

check_for_page: Whether to check for a page with a matching slug when on a post type/taxonomy archive/single. Will also perform the check for pages with a slug of 'search' and '404'. Default 'true'.

post_type_pages: The function will default to the name of the post type for post type page checks, but you can manually override it with this parameter. Includes defaults for Search and 404.

Returns

Filters

You can adjust the output of this function by adding this filter: add_filter( 'cnp_get_highest_ancestor', 'custom_filter_title', 20, 1 ). The accepted argument is the ancestor variable. Return it in your filter function to alter the output.

Scenarios

Hierarchical post type (is_post_type_hierarchical)

Returns data about the highest ancestor of the current post. If the current post is a top-level post, then the current post data is returned.

Flat post type (else)

Returns data about the post type. Will check for a page with the same slug as the post type if $args['check\_for\_page'] is true, returns basic post type data otherwise.

Default home page (is_home && is_front_page)

Returns basic home page data.

Static Front Page (page_on_front)

Returns data based on the Front Page post object, which is defined in the Reading Settings.

Posts Page (page_for_posts)

Returns data based on the Posts Page, which is defined in the Reading Settings.

Taxonomy Terms (is_tax, is_category, is_tag)

Returns data based on the current taxonomy term.

Search Results (is_search)

Returns basic search results data.

404 Page (is_404)

Returns basic 404 page data.


All versions of wp-highest-ancestor with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.3
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package cnp/wp-highest-ancestor contains the following files

Loading the files please wait ....