Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Parent page not shown in admin interface for API created pages #415

Open
theresazobel opened this issue Jan 23, 2019 · 2 comments
Open

Parent page not shown in admin interface for API created pages #415

theresazobel opened this issue Jan 23, 2019 · 2 comments

Comments

@theresazobel
Copy link

I create nested pages (parent/child structure) with the help of the API. Inside the DB I can see all my created pages with the correct parentID. However, this is not shown in the Parent Attributes box in the Wordpress UI (admin interface / pages).

Screenshots provided: In the first one you can see that it's a child post (---). The second screenshot shows the parent attributes box: "no parent". Third screenshot show the DB with the same element and the correct parentID.

I create these pages likes this:

function createPage(title, content, parent) {
    console.log(parent);
    var wp = new WPAPI({
        endpoint: 'http://localhost:8888/wordpress/wp-json',
        username: 'admin',
        password: 'pass'
    });
    return wp.pages().create({
        title: title,
        content: content,
        parent: parent,
        status: 'publish'
    })
        .catch(error => {
            console.error('Error: ' + error.message);
        })
        .then(function (response) {
        return response.id;
    })
}

screenshot 2019-01-23 at 11 53 00
screenshot 2019-01-23 at 11 53 16
screenshot 2019-01-23 at 13 38 18

@theresazobel theresazobel changed the title Parent Page not shown in admin interface for API created pages Parent page not shown in admin interface for API created pages Jan 23, 2019
@jasie
Copy link

jasie commented Jan 23, 2019

I create nested pages (parent/child structure) with the help of the API. Inside the DB I can see all my created pages with the correct parentID. However, this is not shown in the Parent Attributes box in the Wordpress UI (admin interface / pages).

Screenshots provided: In the first one you can see that it's a child post (---). The second screenshot shows the parent attributes box: "no parent". Third screenshot show the DB with the same element and the correct parentID.

I create these pages likes this:

function createPage(title, content, parent) {
    console.log(parent);
    var wp = new WPAPI({
        endpoint: 'http://localhost:8888/wordpress/wp-json',
        username: 'admin',
        password: 'pass'
    });
    return wp.pages().create({
        title: title,
        content: content,
        parent: parent,
        status: 'publish'
    })
        .catch(error => {
            console.error('Error: ' + error.message);
        })
        .then(function (response) {
        return response.id;
    })
}

screenshot 2019-01-23 at 11 53 00
screenshot 2019-01-23 at 11 53 16
screenshot 2019-01-23 at 13 38 18

I suggest you mention that manually created pages do show up and that their GUID differs :-)

@theresazobel
Copy link
Author

theresazobel commented Jan 23, 2019

Okay this just happened:

I manually insert a page via the DB and marked the parent to be e.g. page 1 (API created). Now all the other pages (API created) show the correct parent and all the other pages in the dropdown. 😲

(I truncate the table, inserted the pages again with the API. Same bug. Added a page manually via the DB: worked again)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants