Download the PHP package ed-itsolutions/wordpress-fns without Composer

On this page you can find all versions of the php package ed-itsolutions/wordpress-fns. 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 wordpress-fns

WordPress Fns

A collection of functions to help with WordPress theme & plugin development.

Install

Install from Composer:

Then add require('vendor/autoload.php'); to the top of your functions.php.

Functions

wordpress_fns_as_filter($functionName, $priority = 10, $args = 1)

Adds the named function $functionName as a filter with the same name.

wordpress_fns_featured_image_at_size($postId, $imageSize)

Returns the given posts $postId featured image at size $imageSize.

Returns false if the post does not have a featured image.

wordpress_fns_format_as_date($date)

Returns the given date using the WordPress sites date formatting.

$date can either be a timestamp or anything that strtotime can handle.

wordpress_fns_get_attachment_id_from_url($url)

Returns the id of the attachment from the url. Extremely useful when working with meta boxes etc... that store an images URL instead of its attachment id.

Returns false if no attachment could be found.

wordpress_fns_get_page_sub_menu_items($pageId, $menuName)

Returns an array of menu items that are the direct desendants of the supplied page $pageId on the menu $menuName.

Returns an empty array if it couldn't find the menu item for the supplied page.

wordpress_fns_header_or_featured_image($imageSize, $postId = 0)

If the page has a featured image that image at the given size $imageSize will be returned, otherwise it returns the header image set in the customizer.

Supplying $postId will return the given posts image.

Contributing

We welcome PRs to this project. If you have a function or improvement feel free to add them.

We ask that:


All versions of wordpress-fns 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 ed-itsolutions/wordpress-fns contains the following files

Loading the files please wait ....