Read Our Reviews

Bold City Agency is rated 5 out of 5.0 stars based on 28 review(s).

---

We were very pleased with the new design that Bold City created for our website. Modern, sleek and our visitors seem to love it. Excellent communication throughout the entire process. A+

- Mary Soulette

---

We are so pleased with the support and help with our website that Bold City has provided. Keep up the great work guys and gals!

- Mary Watson

---

Great team to work with. Remarkably fast to respond to emails and requests, much better than the last company we were working with.

- Steve Lawton

---

Awesome work. Quick to respond to requests and very knowledgable. Transfer over to Bold City was painless and they handled everything.

- Donald Herena

---

Great company to do business with. Honest and fair with pricing. Our requests were small, needed some assistance with configuring email services but Bold City diagnosed the issues quickly and completed the work on time. We will be back for future help.

- John McAlpin

---

Cabe & team, we love you guys!  Keep up the great work.

- Marcus Yoker

---

It’s so difficult to find a technology contact that understands time is money.  We’ve gone through a few that did good work when you could get them on the phone but that was a rarity.  We would go 1+ weeks and not even get a response.  This was costing our business literally thousands of dollars due to issues with our website and email.  Bold City has been nothing but a blessing.  They return my calls and emails promptly and thus far (fingers crossed) have always met their promised deadlines.  If you’re looking for a company that understands the importance of communicating with their clients, you’ve found the one.  They have my recommendation.

- Abby Timmons

---

Who ya gonna call?! BOLD CITY! But seriously, nothing but a pleasure to work with.  We trust them completely and they have our business for life.

- Lona Mayer

---

Best website design company out there. USE. THESE. GUYS.  Affordable, fair, great communication and great work.

- Susan Johnson

---

As a technology company we know great work when we see it.  We had an internal learning system that was built by a previous employee.  When that employee moved on from the company we had nobody internal that understood WordPress enough to make changes and continue to improve the system.  We outsourced the project to Bold City, they took it head on and we’re able to make our required changes.  We plan to use them more in 2019.

- Mike Dawker

---

Bold City built us a fantastic website the showed off our company perfectly.  They recommended fantastic additions including the video on the homepage which really sets our site apart from anybody else.  We get soooo many compliments on our website and the new patients we’ve brought in have been fantastic.  Great work guys!

- Brittany Higgins

---

Great work as always!  We’ll be back when we need additional help.

- Jenny Walker

---

Cabe & team are awesome at what they do.  Fast, reliable and most importantly communication is A+.  Finding people that are able to communicate what they are doing and regularly hit promised deadlines is a rarity these days but Bold City delivers!

- David Ayers

---

Best WordPress designers out there!  If you’re on the fence about hiring them, jump off!  You’ve found the best company out there!

- Samantha Lloyd

---

I’m not a very tech savvy person so I wanted to find a web design company that could take my vision, turn it into a reality and handle the management.  Bold City has been terrific and I always know my website is working in the background.

- Jannis Darring

---

We’ve been working with Bold City for over 5 years and never have had a bad experience.  Quick and reliable, A+.

- Jane Walton

---

After extensive research, we hired Bold City to handle the re-design of our 10+ year old e-commerce website.  Bold City took every challenge we threw at them head on.  Going above and beyond just design, they assisted with payment processors, shipping and made several recommendations that have improved our bottom line.  Their in-depth knowledge has been  major reason for our continued success.

- Jonathan Vemus

---

Awesome, awesome, awesome!  Fast, reliable and very cost effective for our business.  Bold City took over our website from our previous designer who was retiring and the transfer process was seamless.

- Jennifer Handler

---

These guys were awesome.  We contacted them to move hosting providers as we were struggling with communication with our current host.  They transferred our site same day at no cost.  Cabe was terrific to work with and has been very easy to get in touch with since.

- Mark Gosling

---

You know how they say “you can’t havw FAST CHEAP AND QUALITY?” Well, you CAN with Bold City Agency. They do BEAUTIFUL work, in a timely manner AT A FAIR price! Couldn’t ask for a better agency!

- DJ / Lindsey

---

Great work!  The marketing results they delivered were fantastic and for once, 'made sense'.  I can't tell you how many times we've been told one thing and received something completely different.  Finally we have measurable results.

- Josh Utilis

---

Prompt accurate service

- Denny Dotson

---

Bold City is great. Super responsive and wonderful attention to detail. Highly recommend.

- Gwinn Volen

---

Awesome work!  Very responsive to emails and phone calls and delivers on promises.

- Mark Aston

---

Cabe and Bold City do great work! They do a great job helping our law firm with our website and online needs.

- John Ginn

---

Cabe was great to work with on my website design. Easy to talk to, he understood my vision/goals, great turnaround time, and able to reach easily. Thanks for a website that I love!

- Denise Maniakouras

---

Awesome stuff!  I love working with Bold City.

- Megan Donaldson

---

Highly recommend! Delivers on promises.

- Brittany Will

Manually Define Permalink Sub-Directory For Custom Post Type

Feb 01, 2018

Manually Define Permalink Sub-Directory For Custom Post Type


This post was originally created on our sister site WP Cover.
View Original Article
February 1, 2018

Have you ever wanted to manually define a sub-directory permalink structure for a specific post?  Or have a sub-directory permalink automatically added based on a custom taxonomy term the post is assigned to?

Either way, it is possible!  Let’s jump into some custom functions.

Before we go further, the first step is to register our custom post type where we want to utilize the permalink structure on.  We’ll register this post type called ‘venue’ using the following:

function register_venue() {
    $args = array(
      'label' => 'Venue',
        'public' => true,
        'show_ui' => true,
        'has_archive' => true,
        'capability_type' => 'page',
        'hierarchical' => false,
        'rewrite' => array(
            'slug' => 'venue/%location%',
            'with_front' => false
        ),
        'query_var' => true,
        'menu_icon' => 'dashicons-location-alt',
        'supports' => array(
            'title',
            'editor',
            'custom-fields',
            'revisions',
            'author',
            'page-attributes',)
        );
    register_post_type( 'venue', $args );
}
add_action( 'init', 'register_venue' );

The important line to take note of is the slug which utilizes the variable %location%. This will be replaced when we create a new post.

Now that we have the custom post type registered, we have two approaches we can use to replace %location% for the individual post. Our first option is going to take a taxonomy term assigned to the post and apply the slug to the permalink.

Here’s what our function would look like.  Looking for assigned terms within a custom taxonomy called ‘location’.


function events_permalink_structure($post_link, $post, $leavename, $sample)
{
    if ( false !== strpos( $post_link, '%location%' ) ) {
        $event_type_term = get_the_terms( $post->ID, 'location' );
        $post_link = str_replace( '%location%', array_pop( $event_type_term )->slug, $post_link );
    }
    return $post_link;
}


Option #2 could leverage a custom field (in this case using Advanced Custom Fields) to manually assign the permalink directory from a custom field. Here we are grabbing the custom field value ‘location_permalink’ and inserting it into the permalink.

function events_permalink_structure($post_link, $post, $leavename, $sample)
{
    if ( false !== strpos( $post_link, '%location%' ) ) {
        $event_type_term = get_field('location_permalink', $post->ID);
        $post_link = str_replace( '%location%', $event_type_term, $post_link );
    }
    return $post_link;
}

Enjoy :).

The post Manually Define Permalink Sub-Directory For Custom Post Type appeared first on WP Cover.

Additional News

Perfect!

Let's get started. Fill out the form below to email us or request a call back.