All Projects → stuttter → wp-term-images

stuttter / wp-term-images

Licence: GPL-2.0 license
Images for categories, tags, and other taxonomy terms

Programming Languages

PHP
23972 projects - #3 most used programming language
javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to wp-term-images

Everybody-dance-now
Implementation of paper everybody dance now for Deep learning course project
Stars: ✭ 22 (-35.29%)
Mutual labels:  images
wallup-android
Hand curated Images & 'Auto Wallpaper'
Stars: ✭ 30 (-11.76%)
Mutual labels:  images
react-simple-image-viewer
Simple image viewer component for React
Stars: ✭ 44 (+29.41%)
Mutual labels:  images
Awesome-meta-tags
📙 Awesome collection of meta tags
Stars: ✭ 18 (-47.06%)
Mutual labels:  meta
Cometary
Roslyn extensions, with a touch of meta-programming.
Stars: ✭ 31 (-8.82%)
Mutual labels:  meta
tensorflow-bicubic-downsample
tf.image.resize_images has aliasing when downsampling and does not have gradients for bicubic mode. This implementation fixes those problems.
Stars: ✭ 23 (-32.35%)
Mutual labels:  images
pretty-formula
A small Java library to parse mathematical formulas to LaTeX and display them as images
Stars: ✭ 29 (-14.71%)
Mutual labels:  images
vuepress-plugin-autometa
Auto meta tags plugin for VuePress 1.x
Stars: ✭ 40 (+17.65%)
Mutual labels:  meta
tools-generation-detection-synthetic-content
Compilation of the state of the art of tools, articles, forums and links of interest to generate and detect any type of synthetic content using deep learning.
Stars: ✭ 107 (+214.71%)
Mutual labels:  images
Walt
🎬 A Swift 3 library for creating gifs and videos from a series of images
Stars: ✭ 44 (+29.41%)
Mutual labels:  images
cometa
Lightweight, header-only C++14 metaprogramming library. Pattern matching, compile-time stuffs and algorithms (arrays, type information (CTTI), string manipulation), 'value-or-errorcode' union-like type, type for passing named arguments, useful constexpr functions and many more. (MIT license)
Stars: ✭ 56 (+64.71%)
Mutual labels:  meta
ngx-fire-uploader
Angular Fire Uploader
Stars: ✭ 18 (-47.06%)
Mutual labels:  images
android-doc-picker
A simple and easy to use documents Picker android library. Choose any documents like pdf, ppt, text, word or media files from your device
Stars: ✭ 37 (+8.82%)
Mutual labels:  images
blur-up
A tool that creates preview images.
Stars: ✭ 28 (-17.65%)
Mutual labels:  images
imgs-upload-srv
【Released】🌁一款以图片管理为核心的图床。在众多上传的图片中管理自己的图片,分类它们,贴上标签...以便以后精确管理。提供简单分享&在线外链("仅存储"&UI2.x功能正在进行中)。🌹
Stars: ✭ 73 (+114.71%)
Mutual labels:  images
laravel-meta
💥 Render meta tags within your Laravel application
Stars: ✭ 36 (+5.88%)
Mutual labels:  meta
hermitage
Service that provides storage, delivery and modification of your images
Stars: ✭ 33 (-2.94%)
Mutual labels:  images
cybernode-archive
🚀 Manager of docker images for cybernomics
Stars: ✭ 20 (-41.18%)
Mutual labels:  images
Duplicate-Image-Finder
difPy - Python package for finding duplicate or similar images within folders
Stars: ✭ 187 (+450%)
Mutual labels:  images
phoenix meta tags
Phoenix library helps generating meta tags for website.
Stars: ✭ 25 (-26.47%)
Mutual labels:  meta

WP Term Images

Images for categories, tags, and other taxonomy terms

WP Term Images allows users to assign images to any visible category, tag, or taxonomy term using the media library, providing a customized look for their taxonomy terms.

Installation

  • Download and install using the built in WordPress plugin installer.
  • Activate in the "Plugins" area of your admin by clicking the "Activate" link.
  • No further setup or configuration is necessary.

FAQ

Does this plugin depend on any others?

Not since WordPress 4.4.

Does this create new database tables?

No. There are no new database tables with this plugin.

Does this modify existing database tables?

No. All of WordPress's core database tables remain untouched.

How do I get the image for a term?

With WordPress's get_term_meta() function

// image id is stored as term meta
$image_id = get_term_meta( 7, 'image', true );

// image data stored in array, second argument is which image size to retrieve
$image_data = wp_get_attachment_image_src( $image_id, 'full' );

// image url is the first item in the array (aka 0)
$image = $image_data[0];

if ( ! empty( $image ) ) {
	echo '<img src="' . esc_url( $image ) . '" />';
}

Where can I get support?

Can I contribute?

Yes, please! The number of users needing more robust taxonomy visuals is growing fast. Having an easy-to-use UI and powerful set of functions is critical to managing complex WordPress installations. If this is your thing, please help us out!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].