iansampaio
Forum Replies Created
-
I’m having similar problem: I have been working in a development subdomain and now I’m having troubles to transfer to the main domain: it seems that I can’t reach wp-login due to locale url and I can’t export the translated content to make a new install.
Could we expect a solution in the next couple of weeks?
Forum: Fixing WordPress
In reply to: [Postie] [Plugin: Postie] Custom FieldI have a custom field named ” URL” where i need to give a url for each posts. Is it doable ?
I need the same, actually I need to insert in my post via mail (postie) several custom fields. eg.: duration, name, etc.
Forum: Hacks
In reply to: How to know if the post has attachmentForum: Fixing WordPress
In reply to: Limit title to 25 charactersactually my reply should go to @recogn1ze, and the function I’m using is:
<?php function the_titlesmall($before = '', $after = '', $echo = true, $length = false) { $title = get_the_title(); if ( $length && is_numeric($length) ) { $title = substr( $title, 0, $length ); } if ( strlen($title)> 0 ) { $title = apply_filters('the_titlesmall', $before . $title . $after, $before, $after); if ( $echo ) echo $title; else return $title; } } ?>Forum: Fixing WordPress
In reply to: Limit title to 25 charactersYour solution fits me best! Cause I need together of limiting number I need to give a different class for the title so I can make it smaller too (in some parts of my blog it will be better use)!
The only thing is that I’m getting the same result (reduced text) for both longer than given number and the ones shorter than it!
Any idea?
thanks!