Questions tagged [content]
The content tag has no summary.
525 questions
0votes
1answer
32views
Remove <p> from <blockquote>
I use Classic Editor and try to remove tag <p> from <blockquote> Now I have <blockquote><p><q>Smart text.</q></p></blockquote> and I need <...
0votes
0answers
74views
Importing content but it displays that it already exists
I have been trying to import a basic, exported Wordpress content XML file. What I'm trying to do is add a blog post from one site to another. When I try to import the XML document it simply states ...
0votes
1answer
63views
How to display breadcrumb on category?
I have a breadcrumb displayed on all content types (pages, posts, homepage etc.) - beside of category. What is the way to add category to content types, where breadcrumb is showing? This is the ...
0votes
0answers
14views
RSS Feed Customization
Is there a way to customize the output from RSS feeds from website to website? Right now, when displaying an image from a story, it chooses to show an inline photo rather than a Featured Image. Of ...
0votes
0answers
33views
Copy Content with Images to Other Site
Wondering if anyone has come up with any creative workarounds for copying content which includes images from one site to another? I looked into it many years ago and didn't get far, but wondering if ...
0votes
0answers
21views
Automatically adding some words at the end of specific line
My English not well, so I will try explain my issue and I hope everyone can understand it... My post have content like this: [URL=https://abc.com/7ab4e24c328]MSK_10th_Anniversary_1080p.mp4[/URL] (800....
1vote
1answer
73views
Is it possible to create dynamic templates for block themes directly from the site editor?
For example, you can create a posts template within the site editor, but how do you make it so that the content for each respective single post displays dynamically? Here's my single post template ...
0votes
0answers
25views
How to create advanced custom fields for backend content
Is there a straightforward way to create custom fields for module-based content on WordPress? Example: User Creates page Creates Page content sections through forms Row 1: Column 1 - Content A ...
1vote
1answer
561views
How can I retrieve the original content in a page via REST API, content that I pushed myself also via API?
I pushed some content in pure plain-text into a wordpress via the REST API. Say I push this page content: Hello. Bye. Then when I retrieve it, instead of this original content I find a property ...
0votes
0answers
35views
Content on 90% of my website looks to have disapeared
Website is www.woodslabs.ca. I was having issues with an error appearing when trying to edit pages so I reached out to my hosting company for help. After a few back and forth they were able to get ...
1vote
0answers
134views
Replace all instances of string in page (including header and footer)
I created a small plugin, with a function to replace some strings with others. function replace_text($text) { $text = str_replace('look-for-this-string', 'replace-with-this-string', $text); $...
0votes
1answer
115views
Add text/link next to the last word of each post
I'd like to add a custom message or a link next to the last word of all posts. Like this: This is any post of my wp blog. This is the last word of my post: last word. [text/link here] I've been using ...
0votes
1answer
220views
Trouble with Wordpress Gallery since update using has_block('gallery'
I've got a custom post type setup which displays a gallery below the hero. It's setup to display the first 9 images in a gallery using the following code, when one clicks the "View All Photos&...
0votes
0answers
49views
Where's the Block Template Feature in WordPress?
I'm working on developing a site for one of the Institutes under our organizational umbrella, and I've run into a situation where it'd be great to have a template with some blocks already in place ...
0votes
0answers
50views
add_filter('the_content', 'method') does not trigger my custom method
I'm using the parse_request hook to trigger the the_content filter when you're at /sportivity-roster in the url. When I do a var_dump in the if statement where I check the constant it's value, it ...