Mobile app version of vmapp.org
Login or Join
LarsenBagley505

: How to overcome situations like mostly coded less content website? Background about site : I have a website which is similar to question and answer site like StackOverFlow, but NOT user generated

@LarsenBagley505

Posted in: #Content #Google #Seo

Background about site : I have a website which is similar to question and answer site like StackOverFlow, but NOT user generated content and only one answer. Me and a few friend create the pages / posts. And this site is for programmers.

Example Page of my website:


How to Add your WordPress custom post types to your sites main RSS feed by
default?

Registering a custom post type does not mean it gets added to the main
RSS feed automatically in WordPress.You need to use request filter to add custom
post types to main RSS feed.

// Add 'books' custom post types on main RSS feed
function add_book_post_types_to_rss($qv) {
if (isset($qv['feed']) && !isset($qv['post_type']))
$qv['post_type'] = array('post', 'books', );
return $qv;
}
add_filter('request', 'add_book_post_types_to_rss');



Currently we have 75+ posts and we hope to add 500+ pages within two years. Almost all pages are very similar to above page.

The problem we have faced

We targeting mostly SEO traffic for this site. But we have very less organic traffic even our website is one year old.

We thought following reason is the main reason for it.


Lack of content in single page / post : As you already see this
page has about just 50 words and we don't like adding some garbage
words to just increase word count. We are focusing on adding more
pages/ posts and make big resources collection about WordPress, PHP,
JavaScript, etc.


Is there any solution for overcome this problem?

10% popularity Vote Up Vote Down


Login to follow query

More posts by @LarsenBagley505

0 Comments

Sorted by latest first Latest Oldest Best

Back to top | Use Dark Theme