Created
May 8, 2016 10:36
-
-
Save Dinamiko/15fc02da81a395d9816f95c563c18650 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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