Indojepang
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Yahoo! Media Player] REQUEST: Yahoo Media PlayerIt never work now! very strange behavior!
I want to take my 5 Star to ZERO!!!Forum: Plugins
In reply to: Pull latest attachment from post?Gee.. I’m glad I found this threat!! thank you.. up up up! this is really great!!
Forum: Plugins
In reply to: Member/Join Countertry this..
<?php $stats = get_sitestats(); echo "There are ".$stats[ 'users' ]." registered users."; ?>
Forum: Plugins
In reply to: [Plugin: Yahoo! Media Player] REQUEST: Yahoo Media Playerit doesn’t support Google Analytics too!
Forum: Plugins
In reply to: Mp3 Player that is Google Analytics enabled?Forum: Fixing WordPress
In reply to: 2.5 No longer sending comment email notificationGot these problem too with WPMU 1.5.1.. in WPMU forum no one has got these problem!
edited the file comment.php, but nothing change ??
please help…Forum: Plugins
In reply to: [Plugin: Advanced Excerpt] doesn’t work for meNo need plugin to do that…
put this in function.php your template file
function my_trim_excerpt($text) { // Fakes an excerpt if needed if ( '' == $text ) { $text = get_the_content(''); $text = apply_filters('the_content', $text); $text = str_replace(']]>', ']]>', $text); $text = strip_tags($text); $excerpt_length = 30; $words = explode(' ', $text, $excerpt_length + 1); if (count($words) > $excerpt_length) { array_pop($words); $morelink=sprintf("<a href=\"%s\"> [...]</a>", get_permalink()); array_push($words, $morelink); $text = implode(' ', $words); } } return $text; } remove_filter('get_the_excerpt', 'wp_trim_excerpt'); add_filter('get_the_excerpt', 'my_trim_excerpt');
put your limit words in
$excerpt_length=100
Forum: Fixing WordPress
In reply to: ‘Home’ tab does not workcheck the code in your template, your home is linked to https://frenchtofluency.com/resources/#content
change it to
a href="<?php echo get_settings('home');?>"
Forum: Plugins
In reply to: Music Players with Google Analytics?Forum: Fixing WordPress
In reply to: add a forumbbPress or search wp plugin ‘simple forum’
Forum: Requests and Feedback
In reply to: WP 2.5 Post Slugsyup me too.. it’s not saving after edit the slug
Forum: Everything else WordPress
In reply to: [solved] Slug as stringthe advantage of the_slug from the post_name is u can edit the slug.
for ex: i don’t need space in the string.
with post_name I can’t do that.. or can i?Forum: Fixing WordPress
In reply to: current tag css classyes it obvious enough.. i’m combining tags and categories as list of menus, it’l look strange if the categories highlighted when the tag is not, isn’t it?
just like my toothless smile ??Forum: Fixing WordPress
In reply to: current tag css classanyone?
or there is no css class for current tag?Forum: Fixing WordPress
In reply to: current tag css classthanks joni for your help