内部服务器错误414-请求-URI太大

时间:2011-07-03 作者:Steve

我试图一次删除大约250篇帖子,但下一页显示错误:

Request-URI Too Large

The requested URL\'s length exceeds the capacity limit for this server

Wordpress是否需要使用HTTP Post操作来删除帖子?

2 个回复
最合适的回答,由SO网友:Steve 整理而成

谢谢我最终通过PHPMyAdmin删除了它们。他们都属于同一类。

SO网友:Banago

制作自定义页面模板并将此代码放入其中。它将根据您的需要删除任意多的页面。

<?php
global $post;

$args = array( \'numberposts\' => 250 );
$myposts = get_posts( $args );
foreach( $myposts as $post ) :

wp_delete_post( $post->ID, true );

endforeach; ?>

http://codex.wordpress.org/Function_Reference/get_posts

结束

相关推荐

内部服务器错误414-请求-URI太大 - 小码农CODE - 行之有效找到问题解决它

内部服务器错误414-请求-URI太大

时间:2011-07-03 作者:Steve

我试图一次删除大约250篇帖子,但下一页显示错误:

Request-URI Too Large

The requested URL\'s length exceeds the capacity limit for this server

Wordpress是否需要使用HTTP Post操作来删除帖子?

2 个回复
最合适的回答,由SO网友:Steve 整理而成

谢谢我最终通过PHPMyAdmin删除了它们。他们都属于同一类。

SO网友:Banago

制作自定义页面模板并将此代码放入其中。它将根据您的需要删除任意多的页面。

<?php
global $post;

$args = array( \'numberposts\' => 250 );
$myposts = get_posts( $args );
foreach( $myposts as $post ) :

wp_delete_post( $post->ID, true );

endforeach; ?>

http://codex.wordpress.org/Function_Reference/get_posts

相关推荐

内部服务器错误414-请求-URI太大 - 小码农CODE - 行之有效找到问题解决它

内部服务器错误414-请求-URI太大

时间:2011-07-03 作者:Steve

我试图一次删除大约250篇帖子,但下一页显示错误:

Request-URI Too Large

The requested URL\'s length exceeds the capacity limit for this server

Wordpress是否需要使用HTTP Post操作来删除帖子?

2 个回复
最合适的回答,由SO网友:Steve 整理而成

谢谢我最终通过PHPMyAdmin删除了它们。他们都属于同一类。

SO网友:Banago

制作自定义页面模板并将此代码放入其中。它将根据您的需要删除任意多的页面。

<?php
global $post;

$args = array( \'numberposts\' => 250 );
$myposts = get_posts( $args );
foreach( $myposts as $post ) :

wp_delete_post( $post->ID, true );

endforeach; ?>

http://codex.wordpress.org/Function_Reference/get_posts

相关推荐