您可以使用一个简单的脚本,只运行一次就可以删除它。其想法是用一个包含4个所需ID的数组来替换粘性post数组
PHP 5.4+ version - short array syntax
add_action( \'init\', function ()
{
// Define our new array
$stickies = [1,2,3,4]; // Change to match your own ID\'s
// Update the sticky posts option
update_option(
\'sticky_posts\', // Option name
$stickies // New value
);
}, PHP_INT_MAX );
Pre PHP5.4 version
add_action( \'init\', function ()
{
// Define our new array
$stickies = array( 1,2,3,4 ); // Change to match your own ID\'s
// Update the sticky posts option
update_option(
\'sticky_posts\', // Option name
$stickies // New value
);
}, PHP_INT_MAX );