Title: arrowoods's Replies | WordPress.org

---

# arrowoods

  [  ](https://wordpress.org/support/users/arrowoods/)

 *   [Profile](https://wordpress.org/support/users/arrowoods/)
 *   [Topics Started](https://wordpress.org/support/users/arrowoods/topics/)
 *   [Replies Created](https://wordpress.org/support/users/arrowoods/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/arrowoods/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/arrowoods/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/arrowoods/engagements/)
 *   [Favorites](https://wordpress.org/support/users/arrowoods/favorites/)

 Search replies:

## Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [I have been well and truly Hacked](https://wordpress.org/support/topic/i-have-been-well-and-truly-hacked/)
 *  [arrowoods](https://wordpress.org/support/users/arrowoods/)
 * (@arrowoods)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/i-have-been-well-and-truly-hacked/page/3/#post-2582620)
 * Guys I can’t tell you how mad I was when I got all my sites hacked. I have tried
   about 4 different scripts to repair them until I came across this one. Just drop
   it in your domains root folder and then navigate to it [http://www.domainname.com/cleaner-cli_2.4.php](http://www.domainname.com/cleaner-cli_2.4.php)
   and hit return and just wait. It will take about 3 minutes or so depending on
   the size of your site. But it went through and cleaned the hack code off every
   file on my site. I have ran it 8 times now with no issues and it has gotten every
   file. You can find it here [http://www.php-beginners.com/solve-wordpress-malware-script-attack-fix.html](http://www.php-beginners.com/solve-wordpress-malware-script-attack-fix.html)
   just scroll down and download it. I am thinking about sending this guy money 
   for the time he has saved me. Feel free to contact me if you need help with it.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Linking Parent link to page.](https://wordpress.org/support/topic/linking-parent-link-to-page/)
 *  Thread Starter [arrowoods](https://wordpress.org/support/users/arrowoods/)
 * (@arrowoods)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/linking-parent-link-to-page/#post-1357558)
 * I found the solution so if anyone needs it here it is.
 *     ```
       <?php
       if($post->post_parent) {
       $ancestors = get_post_ancestors($post->ID);
       $root = count($ancestors)-1;
       $parent = $ancestors[$root];
       $parent_title = get_the_title($parent);?>
       <a href="<?php echo get_permalink($parent) ?>"><?php echo $parent_title;?></a>
       <?php
       } else {
       wp_title('');
       }
       ?>
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Linking to parent… HELP!!](https://wordpress.org/support/topic/linking-to-parent-help/)
 *  Thread Starter [arrowoods](https://wordpress.org/support/users/arrowoods/)
 * (@arrowoods)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/linking-to-parent-help/#post-1357556)
 * Well I found my own solution, and anyone else who needs it here it is.
 *     ```
       <?php
       if($post->post_parent) {
       $ancestors = get_post_ancestors($post->ID);
       $root = count($ancestors)-1;
       $parent = $ancestors[$root];
       $parent_title = get_the_title($parent);?>
       <a href="<?php echo get_permalink($parent) ?>"><?php echo $parent_title;?></a>
       <?php
       } else {
       wp_title('');
       }
       ?>
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Linking to parent… HELP!!](https://wordpress.org/support/topic/linking-to-parent-help/)
 *  Thread Starter [arrowoods](https://wordpress.org/support/users/arrowoods/)
 * (@arrowoods)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/linking-to-parent-help/#post-1357530)
 * you can view an example here. [http://www.franklinchristianchurch.com/groups](http://www.franklinchristianchurch.com/groups)
   I want groups to be clickable and link to the groups page so when you are on 
   child pages you can get back to it.
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [how to erase white frames ?](https://wordpress.org/support/topic/how-to-erase-white-frames/)
 *  [arrowoods](https://wordpress.org/support/users/arrowoods/)
 * (@arrowoods)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/how-to-erase-white-frames/#post-1357437)
 * you need to take off the border in
    `.home .featured.post.p2 {border-left:5px
   solid #FFF;border-bottom:5px solid #FFF;width:200px;}`
 * You will see it is on every .featured.post.

Viewing 5 replies - 1 through 5 (of 5 total)