gero_007
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Blacklisted / Post contains a suspected malware URLThe url by redleg-too was really helpful, thanx redleg-too!
So, i removed the script at line 638 and everything is going fine now.
I also had to go through all the very useful links that esmi sent above, so thanx esmi as well.Forum: Fixing WordPress
In reply to: Blacklisted / Post contains a suspected malware URLYes, I read it and I have registered in webmaster tools and submitted for review. They give the following:
Status of the latest badware review for this site: A review for this site has finished. The site was found to still be dangerous for users. Please review your site again. When you are confident that you have cleaned and secured your site, please request another review.
Sample of URLs with malware: https://www.gazetarepublika.al/?p=10507
And it show all the urls like Wordfence did.Forum: Fixing WordPress
In reply to: Blacklisted / Post contains a suspected malware URLThanx for the reply esmi
Url is:
https://gazetarepublika.al/Forum: Fixing WordPress
In reply to: How to import Joomla 1.7 articlesHi Teffer!
how did you do to migrate joomla 1.7 to 1.5?
I need to migrate my joomla to wordpress but need to follow the same way like you did as there is no plugin supporting 1.7 to WP..Forum: Fixing WordPress
In reply to: Need to display specific posts from one categorythank you alchymyth, thanx a lot! This is how it’s working now…
$args = array( 'numberposts' => 1, 'order'=> 'ASC', 'orderby' => 'title', 'category' => 12 ); $postslist = get_posts( $args ); foreach ($postslist as $post) : setup_postdata($post); ?> <a href="<?php the_permalink(); ?>"> <?php the_title(); ?> </a> <?php the_excerpt(); ?> <?php echo "Posted on: " ; the_date(); ?></p>'
Forum: Fixing WordPress
In reply to: Need to display specific posts from one categoryThanks for your reply Peter_L, i know it’s an array and I can print it’s values by the following code:
<?php foreach($same_cat_posts as $post) :?> <a href="#"><a href="<?php the_permalink(); ?>"> <?php the_title(); ?> </a> <?php endforeach; ?>
But, how can i print the_content(); in this case? Any idea? It doesn’t print anything when I try it…??It prints the the_permalink() and the_title() but there is NO OUTPUT for the_content() or the_excerpt()…
Thanx again!