Skip to content

Instantly share code, notes, and snippets.

@miguelpeixe
Created October 9, 2013 18:06
Show Gist options
  • Save miguelpeixe/6905536 to your computer and use it in GitHub Desktop.
Save miguelpeixe/6905536 to your computer and use it in GitHub Desktop.
Replace artist permalink to single artwork
<?php
function bhasia_artist_permalink($url, $post) {
if(get_post_type($post->ID) == 'artist') {
$ids = get_post_meta($post_id, '_artworks');
if($ids) {
$url = get_permalink(array_shift($ids));
}
}
return $url;
}
add_filter('post_type_link', 'bhasia_artist_permalink');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment