Linux 软件免费装
Banner图

Sideways8 Simple Taxonomy Images

开发者 sideways8
technical_mastermind
areimann
更新时间 2013年6月5日 01:30
PHP版本: 3.3 及以上
WordPress版本: 3.5.1
版权: GPLv3
版权网址: 版权信息

标签

taxonomy category category images taxonomy images s8 sideways8 sideways 8

下载

0.8.3 0.8.0 0.8.1 0.8.2 0.8.4

详情介绍:

This plugin was designed with themers and developers in mind. It allows for an easy way to quickly add category, tag, and custom taxonomy images to your taxonomy terms. NOTE: This plugin is not yet intended for use by those that are not comfortable modifying their theme files and have some idea of how WordPress works. We are however working on an easy way for anyone to use this plugin so please check back later! The admin side of things is very simple and straight forward. It adds a field to the add/edit term forms allowing you to easily add an image during the creation or editing of taxonomy terms. It also adds a column to all the taxonomy management screens so you can tell at a glance what image is attached to what taxonomy term. To have the images show up on the site you will need to modify your theme files (for now). Just drop in one of the following functions and pass it the appropriate variables. In all examples '$tax_term' is a WordPress taxonomy term object (obtained by using a function like get_term()) and '$size' is an image size as defined by WordPress (e.g. 'thumbnail', 'medium', 'full', etc.). '$size' is optional and defaults to 'thumbnail'. Returns an array with the following format: $image_src => array( 'src' => URL source for the image 'ID' => WordPress attachment ID (ALWAYS check to make sure this was returned before using ID, width, or height) 'width' => Width of image (only returned if ID is returned) 'height' => Height of image (only returned if ID is returned) ); Returns php FALSE on failure. <?php $image_src = s8_get_taxonomy_image_src($tax_term, $size); ?> Returns all the HTML needed to display the image, returns php FALSE on failure. <?php $image_html = s8_get_taxonomy_image($tax_term, $size); ?> Same as s8_get_taxonomy_image() except it goes ahead and echos it out <?php s8_taxonomy_image($tax_term, $size); ?>

安装:

  1. Upload the entire s8-simple-taxonomy-images directory to the /wp-content/plugins/ directory
  2. Activate the plugin through the 'Plugins' menu in WordPress

升级注意事项:

0.8.4 Bug fix and update to the WP 3.5 media uploader (still compatible with older versions though) 0.8.3 Mostly bug fixes with a couple usability issues addressed. 0.8.2 Found and resolved returning empty source issue. 0.8.1 Fixed a potential issue when getting the source of the image. 0.8.0 Initial release

常见问题:

None yet!

更新日志:

0.8.4 0.8.3 0.8.2 0.8.1 0.8.0