Archive for the 'Wordpress' category

Limit the_excerpt keyword number

function limit_words($string, $word_limit) { // creates an array of words from $string (this will be our excerpt) // explode divides the excerpt ...

WP meniu simplu primar

Limitează numărul de caractere din titlu

echo substr(the_title('', '', FALSE), 0, 50) . " (...)";

WP qTranslate traduceri separate

function BCLANG ($Cuvant){ $BC["Link-uri rapide"] = "Quick links"; if ( ($BC[$Cuvant] != "") && (qtrans_getLanguage() == "en") ){ return $BC[$Cuvant]; } else ...

Get page number

< ?php the_ID(); ?> // Works inside of the Loop function function_name() { global $post; $thePostID = $post->ID; } // Works in single post outside of ...

Wordpress, Listează articole din categorie

echo "<h2>Servicii tehnice</h2>"; $theirNews = new WP_Query(); $theirNews->query('category_name=servicii&showposts=10'); while($theirNews->have_posts()) : $theirNews->the_post(); ?> <h3><a href="<?php echo the_permalink(); ?>" ><?php the_title(); ?></a></h3> <p><?php the_excerpt_rss(); ?></p> <?php endwhile;

Plesk & Wordpress problem

Having problems with the new uploader system? Does it get "stuck" or otherwise not work for you? Things to try: 1. ...

Show posts only for the selected category

<?php while (have_posts()) : the_post(); ?> <? if ((is_category()) && in_category($wp_query->get_queried_object_id())) { ?> <div class="post"> <h2 id="post-<?php the_ID(); ?>"><?php ...