This function has been deprecated.
start_wp()
Sets up the ClassicPress Loop.
Description
Use The Loop instead.
Source
File: wp-includes/deprecated.php
function start_wp() {
global $wp_query;
_deprecated_function( __FUNCTION__, 'WP-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() );
}
Changelog
Version | Description |
---|---|
WP-1.5.0 | This function has been deprecated. |
WP-1.0.1 | Introduced. This function has been deprecated. |