Skip to content

Instantly share code, notes, and snippets.

@CreativePoweredGeek
Last active January 5, 2020 15:14
Show Gist options
  • Save CreativePoweredGeek/81dd45cd92514f408aa9fb231f2125ab to your computer and use it in GitHub Desktop.
Save CreativePoweredGeek/81dd45cd92514f408aa9fb231f2125ab to your computer and use it in GitHub Desktop.
Useful ExpressionEngine Snippets
<!--Get the count of entries quickly on a channel-->
{exp:stats channel="channel_name"}{total_entries}{/exp:stats}
<!-- This will create an EDIT link that opens the edit window in the Control Panel for this channel entry in a new tab -->
<!-- Must be placed inside an EE Channel Entries tag pair -->
<!-- The user must be a logged in to see it.-->
<!-- Modify visibility by filtering by User Groups.-->
{if logged_in}
<p class="text-center">
<a href="{cp_edit_entry_url}" target="_blank" class="btn btn-default btn-sm btn-edit">EDIT</a>
</p>
{/if}
@CreativePoweredGeek
Copy link
Author

A file of useful EE snippets for various tasks

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