Just because you won’t get rejected does not mean you should use it.
For secondary loops use either WP_Query or get_posts() (wrapper or WP_Query).
query_posts is not a good option as it tends to override the main loop, thus if you don’t know much you can cause lot’s of problems to plugin developers.
For filtering the main loop, use pre_get_posts filter.
Seems to be a classical php error of accessing index of an empty variable.
My guess is that the problem will solve itself once you save theme options.
First thing you need to learn if you want to be successuful in this job is how to Google.
If you don’t know how to do that, learn as fast as you can.

How about this then:
function post_type_fetch() {
if ( isset( $_GET['post'] ) ) {
$post_type = get_post_type( intval( $_GET['post'] ) );
var_dump( $post_type );
}
}
add_action( 'after_setup_theme', 'post_type_fetch' );Thank bit fade, he is the author 
You are using TimThumb, which is not allowed anymore.
Why is there no url input validation? I can enter anything and it says Is Down 
mixey said
Item: http://codecanyon.net/item/visual-composer-for-wordpress/242431 Banner: https://dl.dropboxusercontent.com/u/10764168/200x200.jpg My mac is again in service center can’t resample image to other size now![]()
If you want, you can send me source files and I’ll edit them for you.
You just achieved my goal
Good job!
