Viewing 4 replies - 1 through 4 (of 4 total)
  • 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');

    You mean…

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

    Works for me.Thanks

    Thread Starter Chrisw83

    (@chrisw83)

    Got it working, thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Works with posts but not custom post types’ is closed to new replies.