PhotoBlog 1.3.0
Contributors: laullonTags: 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: ftblg.com
NEW
Provides the photo BBcode ready tu use in a from.
Features
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 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 FivePost.
- "Ocular Professor" andreamignolo.com/ocular-professor/
- "MonoTone PhotBlog" 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
Pluginsmenu in WordPress - Activate and edit the Theme through the
Presentationmenu in WordPress - Tweak "Options >> PhotoBlog".
- Tweak your side bar.
- Set "Blog Pages - Show at most: 1 posts." in "Options >> Reading".
- Enjoy :-)
Frequently Asked Questions
N/A
Screenshots
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;
}