Auto-Generate Longtail-SEO Pages/URLs

Situation: I read this article on how nomadlist.com uses its crowdsourced data to automatically create individual pages to be visibile for longtail seo-keywords. The author states that they use a php-template, but I’m not sure what he bases that statement on. Our project collects crowdsourced data and I’m struggling a bit to replicate this. Especially … Read more

Add image tags to native WordPress XML Sitemaps

I would like to add image tags into my sitemap posts: <image:image> <image:loc> <![CDATA[ https://example.com/image.jpg ]]> </image:loc> <image:caption> <![CDATA[ Image caption ]]> </image:caption> <image:title> <![CDATA[ Image Title ]]> </image:title> </image:image> Is there any filter that allows to add these tags into a native WP sitemap? Thank you 0

Get a permalink structure of /%posttype%/%category%/%postname%

I have a custom post type named Reportage, added in functions.php: add_action( ‘init’, ‘create_post_type’ ); function create_post_type() { register_post_type( ‘reportage’, array( ‘labels’ => array( ‘name’ => __( ‘Reportage’ ), ‘singular_name’ => __( ‘Reportage’ ) ), ‘public’ => true, ‘taxonomies’ => array(‘category’), ‘query_var’ => true ) ); register_taxonomy_for_object_type(‘category’, ‘reportage’); } Now I want to use this … Read more

How to implement pagination in backward way eg. first – 20 – 19 – 18 – … – 3 – 2 – 1 – last

How can I implement pagination in backward style, like shown in the title. (newest) first – 20 – 19 – 18 – … – 3 – 2 – 1 – last (oldest) I have search plugin, there are not yet plugin for this. Because I want static pagination result, for SEO, I hope I’m not … Read more

add_filter the_content in functions.php not working

I want to add_filter for the_content in functions.php of my theme. I have added code which just display echo but it seams that my filter is not applied. function add_mod_hatom_data($content) { // $t = get_the_modified_time(‘F jS, Y’); //$author = get_the_author(); // $title = get_the_title(); //if(is_single()) { echo ‘perrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr’; // $content .= ‘<div class=”hatom-extra”><span class=”entry-title”>’.$title.'</span> was … Read more

Can a relative sitemap url be used in a robots.txt?

In robots.txt can I write the following relative URL for the sitemap file? sitemap: /sitemap.ashx Or do I have to use the complete (absolute) URL for the sitemap file, like: sitemap: http://subdomain.domain.com/sitemap.ashx Why I wonder: I own a new blog service, www.domain.com, that allow users to blog on accountname.domain.com. I use wildcards, so all subdomains … Read more