Este plugin no se ha probado con las últimas 3 versiones mayores de WordPress. Puede que ya no tenga soporte ni lo mantenga nadie, o puede que tenga problemas de compatibilidad cuando se usa con las versiones más recientes de WordPress.

Header Image Uploader

Descripción

A simple WP plugin that adds a meta box in your post admin to allow upload the header image for your post.

Installation

  1. Download the Header Image Uploader Plugin.
  2. In your WordPress Administration, go to Plugins > Add New > Upload, and select the plugin ZIP file.
  3. Activate the plugin.
  4. Done! The image uploader meta box will appear on add/edit post.

Printing the image output is very simple. Just use this code in your template file.

  <?php /*$image = get_post_meta(get_the_ID(), '$key', true); */
                       $id = get_post_meta($post->ID, 'imhy', true);
                       $image = wp_get_attachment_image_src($id, 'full-size');
                      ?>
                      <img src="<?php echo $image[0]; ?>" />

Support

Contact the plugin author: Imran Ahmed Khan

Developer

Are you a developer want to contribute to develop this plugin? Go to Contact Us.

Capturas

  • Uploader field
  • WordPress media uploader
  • Image uploaded
  • Image selected

Instalación

  1. Download the Header Image Uploader Plugin.
  2. In your WordPress Administration, go to Plugins > Add New > Upload, and select the plugin ZIP file.
  3. Activate the plugin.
  4. The image uploader meta box will appears on add/edit post.

Reseñas

No hay reseñas para este plugin.

Colaboradores y desarrolladores

Este software es de código abierto. Las siguientes personas han contribuido a este plugin.

Colaboradores

Traduce "Header Image Uploader" a tu idioma.

¿Interesado en el desarrollo?

Revisa el código, echa un vistazo al repositorio SVN o suscríbete al registro de desarrollo por RSS.

Registro de cambios

1.0

  • Initial release