Archive for the 'Wordpress' category
Tuesday, March 9th, 2010
function limit_words($string, $word_limit) {
// creates an array of words from $string (this will be our excerpt)
// explode divides the excerpt ...
Posted in Wordpress | No Comments »
Sunday, November 29th, 2009
Posted in Wordpress | No Comments »
Sunday, November 29th, 2009
echo substr(the_title('', '', FALSE), 0, 50) . " (...)";
Posted in Wordpress | No Comments »
Sunday, November 29th, 2009
function BCLANG ($Cuvant){
$BC["Link-uri rapide"] = "Quick links";
if ( ($BC[$Cuvant] != "") && (qtrans_getLanguage() == "en") ){ return $BC[$Cuvant]; } else ...
Posted in Wordpress | No Comments »
Saturday, October 10th, 2009
< ?php the_ID(); ?>
// Works inside of the Loop
function function_name() {
global $post;
$thePostID = $post->ID;
}
// Works in single post outside of ...
Posted in Wordpress | No Comments »
Saturday, August 1st, 2009
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;
Posted in Wordpress | No Comments »
Friday, March 6th, 2009
Having problems with the new uploader system? Does it get "stuck" or otherwise not work for you? Things to try:
1. ...
Posted in Wordpress | No Comments »
Tuesday, December 9th, 2008
<?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 ...
Posted in Wordpress | No Comments »