Warning: This function has been deprecated.

start_wp()

Sets up the WordPress Loop.


Description Description

Use The Loop instead.


Source Source

File: wp-includes/deprecated.php

61
62
63
64
65
66
67
68
69
70
function start_wp() {
    global $wp_query;
 
    _deprecated_function( __FUNCTION__, '1.5.0', __('new WordPress Loop') );
 
    // Since the old style loop is being used, advance the query iterator here.
    $wp_query->next_post();
 
    setup_postdata( get_post() );
}

Top ↑

Changelog Changelog

Changelog
Version Description
1.5.0 This function has been deprecated.
1.0.1 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.