Title: danielboros's Replies | WordPress.org

---

# danielboros

  [  ](https://wordpress.org/support/users/danielboros/)

 *   [Profile](https://wordpress.org/support/users/danielboros/)
 *   [Topics Started](https://wordpress.org/support/users/danielboros/topics/)
 *   [Replies Created](https://wordpress.org/support/users/danielboros/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/danielboros/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/danielboros/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/danielboros/engagements/)
 *   [Favorites](https://wordpress.org/support/users/danielboros/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Co-Authors Plus] Authors' post count isn't including custom posts types](https://wordpress.org/support/topic/authors-post-count-isnt-including-custom-posts-types/)
 *  [danielboros](https://wordpress.org/support/users/danielboros/)
 * (@danielboros)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/authors-post-count-isnt-including-custom-posts-types/#post-3559272)
 * Thanks for the reply – I’ll let you know if I come up with something!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Co-Authors Plus] Authors' post count isn't including custom posts types](https://wordpress.org/support/topic/authors-post-count-isnt-including-custom-posts-types/)
 *  [danielboros](https://wordpress.org/support/users/danielboros/)
 * (@danielboros)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/authors-post-count-isnt-including-custom-posts-types/#post-3559257)
 * Hi! I have the same problem, custom post types don’t appear for the author, not
   even in the authors admin page..
 * Did you find any solutions to this?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Polylang] [Plugin: Polylang] 404 errors with /%postname%/ permalinks](https://wordpress.org/support/topic/plugin-polylang-404-errors-with-postname-permalinks/)
 *  [danielboros](https://wordpress.org/support/users/danielboros/)
 * (@danielboros)
 * [14 years ago](https://wordpress.org/support/topic/plugin-polylang-404-errors-with-postname-permalinks/#post-2746880)
 * You are my hero. I don’t know why I included the query_var, I guess I just copied
   it over from some sample code, while trying make things work..
 * Anyway, I’ve simplified my function and now it works like a charm:
 *     ```
       register_post_type('wallpapers', array(
           'label' => __('Wallpapers'),
           'singular_label' => __('Wallpaper'),
           'public' => true,
       	'_builtin' => false,
           'supports' => array('title', 'editor', 'trackbacks', 'custom-fields', 'thumbnail', 'comments')
       	));
       ```
   
 * I think I owe you a beer or two.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Polylang] [Plugin: Polylang] 404 errors with /%postname%/ permalinks](https://wordpress.org/support/topic/plugin-polylang-404-errors-with-postname-permalinks/)
 *  [danielboros](https://wordpress.org/support/users/danielboros/)
 * (@danielboros)
 * [14 years ago](https://wordpress.org/support/topic/plugin-polylang-404-errors-with-postname-permalinks/#post-2746876)
 * I am keeping all my slugs different. I’d like to avoid adding language information
   to the url.
 * I’ve registered my post types manually. Here’s my code:
 *     ```
       register_post_type('wallpapers', array(
           'label' => __('Wallpapers'),
           'singular_label' => __('Wallpaper'),
           'public' => true,
       	'_builtin' => false,
           'show_ui' => true,
           'capability_type' => 'post',
           'hierarchical' => false,
           'query_var' => false,
           'supports' => array('title', 'editor', 'trackbacks', 'custom-fields', 'thumbnail', 'comments'),
           'rewrite' => array('slug' => 'wallpapers')
       	));
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Polylang] [Plugin: Polylang] 404 errors with /%postname%/ permalinks](https://wordpress.org/support/topic/plugin-polylang-404-errors-with-postname-permalinks/)
 *  [danielboros](https://wordpress.org/support/users/danielboros/)
 * (@danielboros)
 * [14 years ago](https://wordpress.org/support/topic/plugin-polylang-404-errors-with-postname-permalinks/#post-2746872)
 * Yes I’ve tried re-saving it a few times.
 * However I _do_ hide the language code – i give different names to all my posts
   and pages in different languages. This might not be a good idea but it seemed
   to work out fine up to this point..
 * Thank you,
    Dabiel
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Polylang] [Plugin: Polylang] 404 errors with /%postname%/ permalinks](https://wordpress.org/support/topic/plugin-polylang-404-errors-with-postname-permalinks/)
 *  [danielboros](https://wordpress.org/support/users/danielboros/)
 * (@danielboros)
 * [14 years ago](https://wordpress.org/support/topic/plugin-polylang-404-errors-with-postname-permalinks/#post-2746868)
 * Hello Chouby,
 * I have this problem with custom posts.
    I too have /%postname%/ permalinks. I’m
   getting 404 errors on all custom post type pages.
 * For example, I have a custom post type called ‘wallpapers’, with a post called‘
   time-machine’, but /wallpapers/time-machine/ throws a 404 error.
 * WordPress itself does have a [similar problem](http://wordpress.org/support/topic/permalinks-404-with-custom-post-type),
   but none of those solutions worked for me..
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Polylang] [Plugin: Polylang] 0.8.4 messed it up for me..](https://wordpress.org/support/topic/plugin-polylang-084-messed-it-up-for-me/)
 *  Thread Starter [danielboros](https://wordpress.org/support/users/danielboros/)
 * (@danielboros)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/plugin-polylang-084-messed-it-up-for-me/#post-2745429)
 * Thank you – after the update, it’s prefect again.
    Let me know if I can return
   your help in any ways.
 * Daniel
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Polylang] [Plugin: Polylang] 0.8.4 messed it up for me..](https://wordpress.org/support/topic/plugin-polylang-084-messed-it-up-for-me/)
 *  Thread Starter [danielboros](https://wordpress.org/support/users/danielboros/)
 * (@danielboros)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/plugin-polylang-084-messed-it-up-for-me/#post-2745266)
 * Of course, I forgot:
 * [http://tonetype.com/naplo/](http://tonetype.com/naplo/)
    this works
 * [http://tonetype.com/blog/](http://tonetype.com/blog/)
    this won’t..
 * thank you!

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