Title: Ctrl-C's Replies | WordPress.org

---

# Ctrl-C

  [  ](https://wordpress.org/support/users/ctrl-c/)

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 60 total)

1 [2](https://wordpress.org/support/users/ctrl-c/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/ctrl-c/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/ctrl-c/replies/page/4/?output_format=md)
[→](https://wordpress.org/support/users/ctrl-c/replies/page/2/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Fatal Error on the homepage – need help!](https://wordpress.org/support/topic/fatal-error-on-the-homepage-need-help/)
 *  [Ctrl-C](https://wordpress.org/support/users/ctrl-c/)
 * (@ctrl-c)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/fatal-error-on-the-homepage-need-help/#post-3621158)
 * Update your Settings → Reading → Homepage settings.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Posting and Linking 2 Custom Fields in Template – Please Help](https://wordpress.org/support/topic/posting-and-linking-2-custom-fields-in-template-please-help/)
 *  [Ctrl-C](https://wordpress.org/support/users/ctrl-c/)
 * (@ctrl-c)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/posting-and-linking-2-custom-fields-in-template-please-help/#post-3616150)
 * Seems like the developer of your theme is using 3rd party framework or plugin
   as `get_field()` is not an in-built WordPress function. Great to hear that everything
   has worked out.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Posting and Linking 2 Custom Fields in Template – Please Help](https://wordpress.org/support/topic/posting-and-linking-2-custom-fields-in-template-please-help/)
 *  [Ctrl-C](https://wordpress.org/support/users/ctrl-c/)
 * (@ctrl-c)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/posting-and-linking-2-custom-fields-in-template-please-help/#post-3616145)
 * Probably, your custom fields have some other names. You will need to get them.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Posting and Linking 2 Custom Fields in Template – Please Help](https://wordpress.org/support/topic/posting-and-linking-2-custom-fields-in-template-please-help/)
 *  [Ctrl-C](https://wordpress.org/support/users/ctrl-c/)
 * (@ctrl-c)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/posting-and-linking-2-custom-fields-in-template-please-help/#post-3616014)
 * Try this code (it is not safe, but should output fields if they do exist):
 *     ```
       $service_used = get_post_meta(get_the_ID(), 'service_used', true);
       $service_url = get_post_meta(get_the_ID(), 'service_url', true);
       echo '<a href="' . $service_url . '">' . $service_used . '</a>';
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Can't access admin panels: 404 page not found.](https://wordpress.org/support/topic/cant-access-admin-panels-404-page-not-found/)
 *  [Ctrl-C](https://wordpress.org/support/users/ctrl-c/)
 * (@ctrl-c)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/cant-access-admin-panels-404-page-not-found/#post-3616013)
 * Your WordPress database is configured to work with kr8bureau.at site. Look at
   [this guide](http://codex.wordpress.org/Moving_WordPress) or replace strings 
   in database manually.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to change search results based in content and not just titles?](https://wordpress.org/support/topic/how-to-change-search-results-based-in-content-and-not-just-titles-1/)
 *  [Ctrl-C](https://wordpress.org/support/users/ctrl-c/)
 * (@ctrl-c)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/how-to-change-search-results-based-in-content-and-not-just-titles-1/#post-3616012)
 * Post contents of item-video.php & loop-actions.php to pastebin.com, please.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [[How-To] Converting a form into post](https://wordpress.org/support/topic/how-to-converting-a-form-into-post/)
 *  [Ctrl-C](https://wordpress.org/support/users/ctrl-c/)
 * (@ctrl-c)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/how-to-converting-a-form-into-post/#post-3616009)
 * Yes, there is a way, but it is accessible only if you are good with PHP coding
   and know WP core well. I don’t think there is good free alternative.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Single page WordPress website – custom fields or meta boxes or something else?](https://wordpress.org/support/topic/single-page-wordpress-website-custom-fields-or-meta-boxes-or-something-else/)
 *  [Ctrl-C](https://wordpress.org/support/users/ctrl-c/)
 * (@ctrl-c)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/single-page-wordpress-website-custom-fields-or-meta-boxes-or-something-else/#post-3616004)
 * Why don’t you create a separate category for Wedding Section posts and grab them
   on your page with a loop?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Posting and Linking 2 Custom Fields in Template – Please Help](https://wordpress.org/support/topic/posting-and-linking-2-custom-fields-in-template-please-help/)
 *  [Ctrl-C](https://wordpress.org/support/users/ctrl-c/)
 * (@ctrl-c)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/posting-and-linking-2-custom-fields-in-template-please-help/#post-3616003)
 * Sorry, my bad:
 *     ```
       $service_used = get_post_meta(get_the_ID(), 'service_used', true);
       $service_url = get_post_meta(get_the_ID(), 'service_url', true);
       if($service_used && $service_url) :
           echo '<a href="' . $service_url . '">' . $service_used . '</a>';
       endif;
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [[How-To] Converting a form into post](https://wordpress.org/support/topic/how-to-converting-a-form-into-post/)
 *  [Ctrl-C](https://wordpress.org/support/users/ctrl-c/)
 * (@ctrl-c)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/how-to-converting-a-form-into-post/#post-3616002)
 * Yes, there is a [good plugin](http://wordpress.org/extend/plugins/post-from-site/)
   for posting from the site.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [page security](https://wordpress.org/support/topic/page-security/)
 *  [Ctrl-C](https://wordpress.org/support/users/ctrl-c/)
 * (@ctrl-c)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/page-security/#post-3615999)
 * I am not sure pre-baked solutions for your situation exist. Try hiring WordPress
   specialist (developer) that would do that for you, because it requires some levels
   of protections (least safe way: robots.txt + cookies for each buyer).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Posting and Linking 2 Custom Fields in Template – Please Help](https://wordpress.org/support/topic/posting-and-linking-2-custom-fields-in-template-please-help/)
 *  [Ctrl-C](https://wordpress.org/support/users/ctrl-c/)
 * (@ctrl-c)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/posting-and-linking-2-custom-fields-in-template-please-help/#post-3615998)
 * Oh, I guessed your fields 🙂
    Try that code and report if it works, please.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Posting and Linking 2 Custom Fields in Template – Please Help](https://wordpress.org/support/topic/posting-and-linking-2-custom-fields-in-template-please-help/)
 *  [Ctrl-C](https://wordpress.org/support/users/ctrl-c/)
 * (@ctrl-c)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/posting-and-linking-2-custom-fields-in-template-please-help/#post-3615997)
 * Safe example of code:
 *     ```
       $service_used = get_post_meta(get_the_ID(), 'service_used_field', true);
       $service_url = get_post_meta(get_the_ID(), 'service_url_field', true);
       if($service_used && $service_url) :
           echo '<a href="' . $service_url . '">' . $service_used . '</a>';
       endif;
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Posting and Linking 2 Custom Fields in Template – Please Help](https://wordpress.org/support/topic/posting-and-linking-2-custom-fields-in-template-please-help/)
 *  [Ctrl-C](https://wordpress.org/support/users/ctrl-c/)
 * (@ctrl-c)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/posting-and-linking-2-custom-fields-in-template-please-help/#post-3615994)
 * I don’t know where you are trying to insert those fields. Also, I don’t know 
   IDs of your fields (Service Used or Service URL are not correct ones, they shouldn’t
   be separated by spaces).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Moving the blog from subdirectory to subdomain](https://wordpress.org/support/topic/moving-the-blog-from-subdirectory-to-subdomain/)
 *  [Ctrl-C](https://wordpress.org/support/users/ctrl-c/)
 * (@ctrl-c)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/moving-the-blog-from-subdirectory-to-subdomain/#post-3615418)
 * Check [this guide](http://codex.wordpress.org/Moving_WordPress#On_Your_Existing_Server).

Viewing 15 replies - 1 through 15 (of 60 total)

1 [2](https://wordpress.org/support/users/ctrl-c/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/ctrl-c/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/ctrl-c/replies/page/4/?output_format=md)
[→](https://wordpress.org/support/users/ctrl-c/replies/page/2/?output_format=md)