Contributors: laullon
Tags: photo, photoblog, image
Requires at least: 2.x
Tested up to: 2.7.1
Stable tag: 1.3.0
This Plugin convert your WordPress's blog into a photoblog.
Description
See this pluing at work: http://ftblg.com
NEW
Provides the photo BBcode ready tu use in a from.
Features
- if available image's Exif data, displays it.
- Generate thumbnails for RSS.
- Suport RSS MEDIA http://search.yahoo.com/mrss
- Display thumbnails and stats in "Admin>> Manage>> Post".
- Make statistics of the number of accesses to each Post.
- Provides a widget to display thumbnails of the last 5 Post.
- Provides a widget to display thumbnails of the Top Five Post.
Themes
- "Ocular Professor" http://andreamignolo.com/ocular-professor/
- "MonoTone PhotBlog" http://www.laullon.com/monotone-photblog-theme/
Installation
- Download the plugin Zip archive.
- Upload "photoblog" dir to your /wp-content/plugins/ directory
- Install a Theme
- Activate the plugin through the Plugins menu in WordPress
- Activate and edit the Theme through the Presentation menu in WordPress
- Tweak "Options >> PhotoBlog".
- Tweak your side bar.
- Set "Blog Pages
- Show at most: 1 posts." in "Options >> Reading". 9. Enjoy :-)
Frequently Asked Questions
N/A
Screenshots
1 http://monotonedemo.laullon.com/

2 Stats

3 Thumbnails and stats in "Admin>> Manage>> Post"

created by Readme Parser
Hello how do i get rid of the VISITAS BELOW THE IMAGE?
Put this code in the “funtions.php” file of your theme:
add_shortcode(’PhotoBlogImg’, caption_PhotoBlogImg);
function caption_PhotoBlogImg($attr, $content = null) {
global $post;
extract(shortcode_atts(array(
‘width’ => ”,
‘height’ => ”,
‘exif’ => ”,
‘visitas’ => ”,
‘caption’ => ”
), $attr));
if(empty($caption)) $caption=get_the_title($post->ID);
$link=get_permalink($post->ID);
$titulo=$caption;
if (is_home() && is_sticky()){
$content=ftblg_post_medium($post,false);
}
$img=”$content”;
$tit=”$titulo“;
$exif=”$exif”;
$visitas=”\tVisitas: $visitas\n”;
return $img;
}