Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • musoka

    (@musoka)

    In response to Chris_Homan:

    Open wpfp-page-template.php in the plugin folder.

    Look for this line:

    // custom post type support can easily be added with a line of code like below.
            // $qry['post_type'] = array('post','page');

    Delete the // in front of $qry[‘post_type’] and add your post type to the array. Below is an example:

    // custom post type support can easily be added with a line of code like below.
     $qry['post_type'] = array('post','page', 'YOUR_POST_TYPE');

    musoka

    (@musoka)

    Open wpfp-page-template.php in the plugin folder.

    Look for this line:

    // custom post type support can easily be added with a line of code like below.
            // $qry['post_type'] = array('post','page');

    Delete the // in front of $qry[‘post_type’] and add your post type to the array. Below is an example:

    // custom post type support can easily be added with a line of code like below.
     $qry['post_type'] = array('post','page', 'YOUR_POST_TYPE');

Viewing 2 replies - 1 through 2 (of 2 total)