excessus
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Integrating wp-login fields into templateThanks, figaro… I had almost solved except for wrong passwords and usernames which ended in the wp-login page (not desired) and this plugin just solves the problem so thumbs up 🙂
Forum: Fixing WordPress
In reply to: customizing list_pagesThanks Iridiax. The problem is, howerver, that the Associate lists should be pulled automatically from the database, so you can add associates and erase them at will without having to touch the code. It’s being a really painful problem… 🙂
Forum: Fixing WordPress
In reply to: CR (carriage return) in Custom FieldsSolved… it was a matter of…
<?php echo stripslashes (wpautop( get_post_meta($post->ID, “barrios”, true) )); ?>
Thanks!
Forum: Fixing WordPress
In reply to: Check if a post is tagged with a certain tagAt this point I dont believe there is any built-in function to do that. Or to exclude tags being listed in a post query.
So I am thinking in something like
$posttags = get_the_tags(); if ($posttags) { foreach($posttags as $tag) { echo $tag->name . ' '; } } ?>Then somehow have PHP to check $taf->name and see if one of them is “Featured”, if not, do a loop until all names in the array are checked…