Make WordPress Core

Ticket #20075: 20075.2.diff

File 20075.2.diff, 752 bytes (added by DrewAPicture, 11 years ago)

action docs

  • src/wp-activate.php

     
    5252add_action( 'wp_head', 'wpmu_activate_stylesheet' );
    5353
    5454get_header();
     55
     56/**
     57 * Fires before the site activation form is displayed.
     58 *
     59 * @since 3.7.0
     60 */
     61do_action( 'before_activate_form' );
    5562?>
    5663
    5764<div id="content" class="widecolumn">
     
    116123        var key_input = document.getElementById('key');
    117124        key_input && key_input.focus();
    118125</script>
    119 <?php get_footer(); ?>
    120  No newline at end of file
     126<?php
     127/**
     128 * Fires after the site activation form is displayed.
     129 *
     130 * @since 3.7.0
     131 */
     132do_action( 'after_activate_form' );
     133
     134get_footer();