• Resolved nesutulsa

    (@nesutulsa)


    We no longer use the post meta table to save our data as that table is used by virtually every other plugin and is therefore very slow to query.

    In the new version of AIOSEO, we added our own custom tables, aioseo_posts and aioseo_terms, where we store SEO meta data for your posts/terms.

    How can i update now aioseo_keywords, aioseo_title, aioseo_description etc. with some function helper? It was easy update info with
    update_post_meta($post->ID, '_aioseop_title', $title);
    But now post meta don’t works. Maybe u has something like:
    ‘update_aioseo_meta($post->ID, ‘_aioseop_title’, $title);’

Viewing 1 replies (of 1 total)
  • Plugin Author arnaudbroes

    (@arnaudbroes)

    Hey @nesutulsa,

    Unfortunately, we don’t have any functions right now that allow you to do this. You’d have to manipulate the table directly using queries (SQL).

    However, there might be some interesting use cases for this so I’ve gone ahead and opened an issue in our GitHub repository so we can explore this further and think about it. At this time, I can’t make any guarantees though.

    – Arnaud

Viewing 1 replies (of 1 total)
  • The topic ‘Update aio meta with code’ is closed to new replies.