Skip to content

Instantly share code, notes, and snippets.

@dlenettr
Created February 4, 2016 21:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dlenettr/3c34784e4a8720024b7a to your computer and use it in GitHub Desktop.
Save dlenettr/3c34784e4a8720024b7a to your computer and use it in GitHub Desktop.
Favorites tagı kullanımı (1685)
// favorites tag
if ( $is_logged ) {
if ( empty( $member_id['favorites'] ) ) {
$tpl->set_block( "'\\[favorites\\](.*?)\\[/favorites\\]'si", "" );
} else {
$tpl->set_block( "'\\[favorites\\](.*?)\\[/favorites\\]'si", "\\1" );
}
} else {
$tpl->set_block( "'\\[favorites\\](.*?)\\[/favorites\\]'si", "" );
}
// favorites tag
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment