Skip to content

the_excerpt vs the_content #99

Description

@bassjobsen

Before JBST used the_excerpt by default (in content.php). This broke thing such as the buddypress registration form (see: http://wordpress.org/support/topic/registration-not-working-5).

For now the type is changed to:

        if(is_home() || is_category() || is_tag() || is_search())
        {
            the_excerpt();
        }
        else
        {
            the_content();
        }

We should consider to make the_content() default or make it an option.

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions