updating meta description
-
I am using wordpress with bbpress, I wanted to go back to old topic posts and fill in the meta description where it is missing, I have to many posts to want to do each one indevidually, so I thought I could go to sql and do it using the following.
UPDATE wp_yoast_indexable
SET description = CONCAT(‘some text that I want to show ‘, breadcrumb_title)
WHERE object_sub_type = ‘topic’
AND description IS NULL
AND breadcrumb_title LIKE ‘test_post%’;When I checked the table wp_yoast_indexable, all the information was there, but it does not show up when I go to a topic (post), if I change the meta description in the post it changes the description field in wp_yoast_indexable.
Any ideas what I am doing wrong please
- The topic ‘updating meta description’ is closed to new replies.