Skip to content

Instantly share code, notes, and snippets.

@alisspers
Last active December 12, 2015 00:08
Show Gist options
  • Save alisspers/4681404 to your computer and use it in GitHub Desktop.
Save alisspers/4681404 to your computer and use it in GitHub Desktop.
Visar exempel på använding av hooken edit_form_after_title i WP 3.5
<?php
add_action(
'edit_form_after_title',
function()
{
global $post;
if ( 'wg_slider' != $post->post_type )
{
// Vi vill bara visa hjälptexten vid redigering av vår CPT
return;
}
?>
<p>
<strong>OBS!</strong>
Lägg inte till bild i beskrivningen med "Add Media" utan
använd boxen till höger som heter "Featured Image".
</p>
<?php
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment