Skip to content

Instantly share code, notes, and snippets.

@dbernar1
Last active August 29, 2015 14:04
Show Gist options
  • Save dbernar1/3d0af36978226b59cd80 to your computer and use it in GitHub Desktop.
Save dbernar1/3d0af36978226b59cd80 to your computer and use it in GitHub Desktop.
Content from another site
<?php
function get_permalink__dbernar1( $post = null ) {
if ( is_null( $post ) ) global $post;
return site_url( 'products/' . $post->post_name );
}
@dbernar1
Copy link
Author

This is missing other pieces to actually be a whole solution, I created it to fill in the blanks of a guy who was already partway there.

Get in touch ( in a way listed at http://gravatar.com/dbernar1 ) if you need more info.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment