I have a landing page set as my home page, but once visitors enter, I'd like my site title (which is text based) to link to a different page. That is, I want the home page to change to "work" once they get past the landing page.
Appreciate any help!
This question was posed earlier, but the code I found didn't work:
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script>$(document).ready(function () {
$(".site-title a[href]").attr("href", "/work");
});
</script>