Replace get_the_title and the_exerpt with custom arrays
You could use an array of arrays to hold the custom titles and excerpts keyed to the post IDs. In this example, 11, 22, 33, 44, 55, 66, 77, 88 and 99 are sample post IDs. $slides = array( 11 => array( ‘title’ => ‘Custom title 1’, ‘excerpt’ => ‘Custom excerpt 1’, ), 22 => … Read more