Viewing 1 replies (of 1 total)
  • Thread Starter rcharbonxx

    (@rcharbonxx)

    Customizr Pro solution:

    //override icon image for first FP

    add_filter(‘fpc_img_id’, ‘my_fp_imgs’, 20, 3);
    function my_fp_imgs( $fpc_img_id, $fp_single_id, $featured_page_id){
    $page_img = array(
    // page_id => img_id
    ‘6939’ => ‘7022’,
    );

    if ( array_key_exists($featured_page_id, $page_img) ){
    return $page_img[$featured_page_id];
    }
    return $fpc_img_id;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Override Featured Page image’ is closed to new replies.