Last active
January 5, 2020 15:14
-
-
Save CreativePoweredGeek/81dd45cd92514f408aa9fb231f2125ab to your computer and use it in GitHub Desktop.
Useful ExpressionEngine Snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--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} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A file of useful EE snippets for various tasks