iamsgf
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Category Pages not getting updated when updating postNope, that effected nothing 🙁
It seems to be admin issue, not updating that field when saved.
Forum: Fixing WordPress
In reply to: Category Pages not getting updated when updating postthanks, will give this ago.
Forum: Fixing WordPress
In reply to: Category Pages not getting updated when updating postok so problem seems to be when I update a post in the admin then the post_excerpt field in the DB is not getting updated. But I cant seem to find a solution to this!
Forum: Fixing WordPress
In reply to: Category Pages not getting updated when updating postoh and I am using <?php the_excerpt(); ?> to call content.
Forum: Fixing WordPress
In reply to: Incomplete post when savingAlso to add it breaks on characters like ò as well
Forum: Requests and Feedback
In reply to: WP2.7.1 – Category Slugs Problemok, so I thought I would add another issue to this one.
Category Search: In the admin there is ‘Search Categories’ however it only searches Top categories. When I try to search for a Sub-Category I get 0 results, although I know the category is there! I tested this by adding a Main Category and then searching for it and it appear. The then moved the category to a sub category and searched again. The second time it did not appear.
Definate Bug
Forum: Installing WordPress
In reply to: Problem will multple installtions on one serverSorted….. that one worked….. It would be good to have the ‘OPTION’ though to either use the config above or create new in current directory.
Thanks
Forum: Fixing WordPress
In reply to: Running more than 1 domain on a blogThanks for the info, but it is actually cause by the word press installation. I know this as I have the following:
domain1.com/forum/
and when I goto domain2.com/forum it does not revert to domain1, but just domain2.com does goto domain1.com
Forum: Fixing WordPress
In reply to: Adding Image to Home Page From Postok, I am moving forward with my playing…….
I have removed the following:
{
$content = substr(strip_tags($content), 0, 200) . “…”;}
Now, homepage shows the image from the post. However How do I now restrict the amount of text, as it is displaying the whole post on the hompage and not just a snippet.
So lets say I want to show 100 words on the homepage for the post. What do I need to add to the code for this to happen?
Thanks
Forum: Fixing WordPress
In reply to: Adding Image to Home Page From PostFurther to my last, this is the complete snipet used to get the content.
<?php
$content = get_the_content(‘Continued »’);
if (strlen($content) > 200 && !eregi(“Continued »”, $content)) {
$content = substr(strip_tags($content), 0, 200) . “…”;
}
$i++;
?>