An old friend of mine, a prolific blogger, recently embarked on search for a new job.
He was sending his resume a long to a handful of places and it was important to him that he be able to track which of them clicked through to his blog URL from his resume.
It would act as an early indicator for a successful job application, as once they saw his blog, they’d want him for sure! (He’s now gainfully employed by the way).
His idea–create a unique landing page for each resume he sent along. Decent idea, but not terribly original. A lot of people do this.
This is what I suggested he do instead:
Add this snippet to his WordPress theme…
<?php
if( $_GET["utm_campaign"] && $_GET["message"]=="yes" ) {
echo "<h2 style='color: red; text-align: center;'>Thanks for reading my resume ". $_GET['utm_campaign']. "!<br />Click around and get a sense of who I am.<br /></h2>";
}
?>
Placement for this depends on your WordPress template, but in all likelyhood, should go in your header.php file within your theme directory.
For each resume he sends, add a redirect to his .htaccess file:
Redirect 302 /companyname/ http://searchwilderness.com/?utm_source=resume&utm_medium=referral&utm_campaign=Company%20Name&message=yes
(he needs to change “Company%20Name” to the name of the company he is sending his resume to)
Then, he needs to link to /companyname/ on each resume he sends out.
For example: http://searchwilderness.com/companyname
This way, whenever someone clicks though to his blog from a resume he sent out, it will redirect to a URL that is tracked via a UTM parameter and will also display a message like this:
My reasoning for doing this:
- It’s a little faster than creating a unique landing page for each company you are applying to.
- It allows for tracking and personalizes his website for the company he is applying for, but doesn’t detract from the overall experience of this blog.
- Helps him stand out from the pool of applicants
- Isn’t a cliche landing page.
- Shows and ounce of technical experience and originality.
Analytics Campaign Tracking + Personalization for Job Search Success!
I originally shared this tip in my newsletter, which I’d like to encourage people to sign-up for. You can sign-up here.
Hi Paul. Hope you’re doing good. I’m planning on using this technique in the future, however is it possible to direct the person to http://searchwilderness.com/landingpage/companyname so I can tailor a specific page for all applications? I tried to do it but it just doesn’t seem to be working.
Thanks!
Alan
Yeah, you can definitely do that (if I’m interpreting correctly), but it’s actually what I’m advocating against.
But if you really want to do it, it should be as simple as creating a page (for each company) with a parent page in WordPress.
Thanks for the reply Paul. I’d only create one page to expand upon my CV and act as a landing page for all applications, and use your script to tailor it to one specific company. Whenever I try to do it this way though it doesn’t seem to work, it does with just http://searchwilderness.com/companyname however. I’ll keep fiddling with it I’m sure I’ll get it! 😛
Thanks,
Alan