bbkudk
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
I running my WEB server with front-end.
How can I fix this problem?
Why “WP Smush.it” dont use the URL insted of real IP?ther is no plugin with this function, isnt it?
Forum: Plugins
In reply to: how to display all tags in one page???<?php function wp_get_all_tags( $args = '' ) { $tags = get_terms('post_tag'); foreach ( $tags as $key => $tag ) { if ( 'edit' == 'view' ) $link = get_edit_tag_link( $tag->term_id, 'post_tag' ); else $link = get_term_link( intval($tag->term_id), 'post_tag' ); if ( is_wp_error( $link ) ) return false; $tags[ $key ]->link = $link; $tags[ $key ]->id = $tag->term_id; $tags[ $key ]->name = $tag->name; // echo ' <a href="'. $link .'">' . $tag->name . '</a>'; } return $tags; } wp_get_all_tags(); ?>Forum: Plugins
In reply to: [Plugin: SEO Smart Links] Not working for meMaybe you not added define(‘ENABLE_CACHE’, true); in your wp-config.php
Or you are using WP 2.8.x …
Viewing 4 replies - 1 through 4 (of 4 total)