Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter wph4

    (@wph4)

    Thread Starter wph4

    (@wph4)

    @bassgang

    Can you help me here too?

    Thanks!

    Thread Starter wph4

    (@wph4)

    pages are back. I really donot know what it was.
    Things I have done – I copied and pasted as plain text the content from functions,php om itself, just to be sure wp had not inserted <p> where I did wanted … also deleted cache many, many times…

    But I still can not find the option to give the individual posts a post category.

    CAn you help me on this?

    Thanks!

    Thread Starter wph4

    (@wph4)

    Hi,

    I have used this piece of code so now I have an entry text for the individual post :

    Advent Calender Post Type Customization
    Advent calender post type customization via the provided “pvb_acal_cpt_params” hook. The following example will extend the advent calender post type with the common post WordPress content / editor box. Youh can use the hook in your themes “functions.php” or in a plugin like
    function acal_change_post_type_params( $custom_post_type_params ) {
    $custom_post_type_params[‘supports’] = array(
    ‘title’,
    ‘editor’,
    ‘thumbnail’
    );
    return $custom_post_type_params;
    }
    add_filter( ‘pvb_acal_cpt_params’, ‘acal_change_post_type_params’ );

    My question is: How can I gt the option to give this post a wp category?

    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Single page does not exist….’ is closed to new replies.