Results 1 to 7 of 7
Threaded View
-
2nd Jul 2011, 09:59 AM #1OPMemberWebsite's:
freelinkz.infohelp with wordpress bb coding
http://freelinkz.info this is my wordpress .
example:
if i use
[URL =http://img133.imagevenue.com/img.php?image=16154_012_1308313766_122_458lo.jpg][IMG ]http://img133.imagevenue.com/loc458/th_16154_012_1308313766_122_458lo.jpg[/IMG][/URL]
code it do not display the image on thumbnail in main page .but if i just pput this it displays
there are bb code for [img] and [url] in bbcodes plugin
add_shortcode( 'url' , array(&$this, 'shortcode_url') );
add_shortcode( 'img' , array(&$this, 'shortcode_image') );
which are defined as
// Italics shortcode
function shortcode_url( $atts = array(), $content = NULL ) {
$atts = $this->attributefix( $atts );
// Google
if ( isset($atts[0]) ) {
$url = $atts[0];
$text = $content;
}
// http://www.google.com/
else {
$url = $text = $content;
}
if ( empty($url) ) return '';
if ( empty($text) ) $text = $url;
return '<a href="' . $url . '">' . do_shortcode( $text ) . '</a>';
}
and
// Italics shortcode
function shortcode_image( $atts = array(), $content = NULL ) {
if ( NULL === $content ) return '';
return '<img src="' . $content . '" alt="" />';
}
if these to functions some how joined then [url][img][/img][url] bb code will work.
so can someone help me to join these 2 functions.
regards
Edited: And when i put a full size html code image like lulzimg it do not display thumbnail on homepagesumitims Reviewed by sumitims on . help with wordpress bb coding http://freelinkz.info this is my wordpress . example: if i use http://img198.imagevenue.com/loc413/th_16146_12_122_863lo.jpg http://img133.imagevenue.com/loc458/th_16154_012_1308313766_122_458lo.jpg code it do not display the image on thumbnail in main page .but if i just pput this http://img198.imagevenue.com/loc413/th_16146_12_122_866lo.jpg it displays Rating: 5
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
[Hiring] Coding PSD to WordPress template
By D-Wade in forum Completed TransactionsReplies: 0Last Post: 27th Jul 2011, 09:43 PM -
Help needed with coding - Wordpress
By kiddo in forum Webmaster DiscussionReplies: 3Last Post: 10th Dec 2010, 05:21 AM -
Wordpress Theme + Coding
By viruz99 in forum Webmaster DiscussionReplies: 2Last Post: 27th Nov 2010, 02:45 PM -
[Buying] Wordpress theme coding
By ZeroAT in forum Completed TransactionsReplies: 3Last Post: 10th Sep 2010, 11:49 PM
themaManager - edit and manage...
Version 4.04 released. Open older version (or...