Skip to content

Instantly share code, notes, and snippets.

@Dinamiko
Created May 8, 2016 10:36
Show Gist options
  • Save Dinamiko/15fc02da81a395d9816f95c563c18650 to your computer and use it in GitHub Desktop.
Save Dinamiko/15fc02da81a395d9816f95c563c18650 to your computer and use it in GitHub Desktop.
<body>
<?php
// get selected posts
$dkpdfg_selected_posts = get_option( 'dkpdfg_selected_posts', array() );
// print_r($dkpdfg_selected_posts); Array ( [0] => 9031 [1] => 391 [2] => 598 [3] => 495 )
$inserted = array(9032);
array_splice( $dkpdfg_selected_posts, 2, 0, $inserted ); // added to position 2
// print_r($dkpdfg_selected_posts); Array ( [0] => 9031 [1] => 391 [2] => 9032 [3] => 598 [4] => 495 )
if( $dkpdfg_selected_posts ) {
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment