Checking is user author of number of posts?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty{ margin-bottom:0;
}
up vote
1
down vote
favorite
I have this function...
$user = wp_get_current_user();
if (( in_category('Locked') ) && in_array( 'subscriber', (array) $user->roles ) ) {
/* Is subscriber, is in category Locked, has amount of posts */
echo do_shortcode('[shortcode_name]');
} else if (( in_category('Locked') ) && in_array( 'subscriber', (array) $user->roles ) ) {
/* Is subscriber, is in category Locked, has NO amount of posts */
echo '<div id="locked">
You are subscriber without number of posts!
</div>';
} else if ( in_category('Locked') ) {
/* Is NOT subscriber, is in category Locked, has NO amount of posts */
echo '<div id="locked">
Login or register pal!
</div>';
} else {
/* Is NOT subscriber, is NOT in category Locked, has NO amount of posts */
echo do_shortcode('[shortcode_name]');
}
I need to apply "has amount of posts" or "check if user is author of numebr of posts" on first part of code...
if (( in_category('Locked') ) && in_array( 'subscriber', (array) $user->roles ) ) && ?????
If this way can't work, I would have one more possible solution, it is to auto move user from subscriber to contributor once subscriber posted number of posts, but this first solution would be better.
posts functions
add a comment |
up vote
1
down vote
favorite
I have this function...
$user = wp_get_current_user();
if (( in_category('Locked') ) && in_array( 'subscriber', (array) $user->roles ) ) {
/* Is subscriber, is in category Locked, has amount of posts */
echo do_shortcode('[shortcode_name]');
} else if (( in_category('Locked') ) && in_array( 'subscriber', (array) $user->roles ) ) {
/* Is subscriber, is in category Locked, has NO amount of posts */
echo '<div id="locked">
You are subscriber without number of posts!
</div>';
} else if ( in_category('Locked') ) {
/* Is NOT subscriber, is in category Locked, has NO amount of posts */
echo '<div id="locked">
Login or register pal!
</div>';
} else {
/* Is NOT subscriber, is NOT in category Locked, has NO amount of posts */
echo do_shortcode('[shortcode_name]');
}
I need to apply "has amount of posts" or "check if user is author of numebr of posts" on first part of code...
if (( in_category('Locked') ) && in_array( 'subscriber', (array) $user->roles ) ) && ?????
If this way can't work, I would have one more possible solution, it is to auto move user from subscriber to contributor once subscriber posted number of posts, but this first solution would be better.
posts functions
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I have this function...
$user = wp_get_current_user();
if (( in_category('Locked') ) && in_array( 'subscriber', (array) $user->roles ) ) {
/* Is subscriber, is in category Locked, has amount of posts */
echo do_shortcode('[shortcode_name]');
} else if (( in_category('Locked') ) && in_array( 'subscriber', (array) $user->roles ) ) {
/* Is subscriber, is in category Locked, has NO amount of posts */
echo '<div id="locked">
You are subscriber without number of posts!
</div>';
} else if ( in_category('Locked') ) {
/* Is NOT subscriber, is in category Locked, has NO amount of posts */
echo '<div id="locked">
Login or register pal!
</div>';
} else {
/* Is NOT subscriber, is NOT in category Locked, has NO amount of posts */
echo do_shortcode('[shortcode_name]');
}
I need to apply "has amount of posts" or "check if user is author of numebr of posts" on first part of code...
if (( in_category('Locked') ) && in_array( 'subscriber', (array) $user->roles ) ) && ?????
If this way can't work, I would have one more possible solution, it is to auto move user from subscriber to contributor once subscriber posted number of posts, but this first solution would be better.
posts functions
I have this function...
$user = wp_get_current_user();
if (( in_category('Locked') ) && in_array( 'subscriber', (array) $user->roles ) ) {
/* Is subscriber, is in category Locked, has amount of posts */
echo do_shortcode('[shortcode_name]');
} else if (( in_category('Locked') ) && in_array( 'subscriber', (array) $user->roles ) ) {
/* Is subscriber, is in category Locked, has NO amount of posts */
echo '<div id="locked">
You are subscriber without number of posts!
</div>';
} else if ( in_category('Locked') ) {
/* Is NOT subscriber, is in category Locked, has NO amount of posts */
echo '<div id="locked">
Login or register pal!
</div>';
} else {
/* Is NOT subscriber, is NOT in category Locked, has NO amount of posts */
echo do_shortcode('[shortcode_name]');
}
I need to apply "has amount of posts" or "check if user is author of numebr of posts" on first part of code...
if (( in_category('Locked') ) && in_array( 'subscriber', (array) $user->roles ) ) && ?????
If this way can't work, I would have one more possible solution, it is to auto move user from subscriber to contributor once subscriber posted number of posts, but this first solution would be better.
posts functions
posts functions
edited Nov 28 at 22:22
Krzysiek Dróżdż
12.8k52637
12.8k52637
asked Nov 28 at 22:14
MLL
355
355
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
2
down vote
accepted
I guess count_user_posts
is what you're looking for ;)
This is how you use it:
$user_post_count = count_user_posts( $userid , $post_type );
And it returns the number of published posts the user has written in this post type.
PS. And if you want some more advanced count, get_posts_by_author_sql
can come quite handy.
Thank you. Where do I put number of posts I want for the user to be able to see the content? For example I want user to add 5 posts before posts from category Locked become visible to him.
– MLL
Nov 28 at 22:47
Solved. Thank you!
– MLL
Nov 28 at 22:53
add a comment |
up vote
1
down vote
Guy above answered correctly, but for anyone needing this further, I will add full code as response too...
$user = wp_get_current_user();
$user_ID = get_current_user_id();
$user_post_count = count_user_posts( $user_ID );
$my_post_meta = get_post_meta($post->ID, 'shortcode_name', true);
if (( in_category('Locked') ) && in_array( 'subscriber', (array) $user->roles ) && $user_post_count == 5 ) {
/* Is subscriber, is in category Locked, has amount of posts */
echo do_shortcode('[shortcode_name]');
} else if (( in_category('Locked') ) && in_array( 'subscriber', (array) $user->roles ) ) {
/* Is subscriber, is in category Locked, has NO amount of posts */
echo '<div id="locked">
You are subscriber without number of posts!
</div>';
} else if (( in_category('Locked') ) && in_array( 'administrator', (array) $user->roles ) ) {
/* Is subscriber, is in category Locked, has power */
echo do_shortcode('[shortcode_name]');
} else if ( in_category('Locked') ) {
/* Is NOT subscriber, is in category Locked, has NO amount of posts */
echo '<div id="locked">
Login or register pal!
</div>';
} else if ( ! empty ( $my_post_meta ) ) {
/* Post meta exist */
echo do_shortcode('[shortcode_name]');
} else {
/* Is NOT subscriber, is NOT in category Locked, has NO amount of posts */
/* Post meta NOT exist */
echo do_shortcode('[shortcode_name_1]');
}
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
I guess count_user_posts
is what you're looking for ;)
This is how you use it:
$user_post_count = count_user_posts( $userid , $post_type );
And it returns the number of published posts the user has written in this post type.
PS. And if you want some more advanced count, get_posts_by_author_sql
can come quite handy.
Thank you. Where do I put number of posts I want for the user to be able to see the content? For example I want user to add 5 posts before posts from category Locked become visible to him.
– MLL
Nov 28 at 22:47
Solved. Thank you!
– MLL
Nov 28 at 22:53
add a comment |
up vote
2
down vote
accepted
I guess count_user_posts
is what you're looking for ;)
This is how you use it:
$user_post_count = count_user_posts( $userid , $post_type );
And it returns the number of published posts the user has written in this post type.
PS. And if you want some more advanced count, get_posts_by_author_sql
can come quite handy.
Thank you. Where do I put number of posts I want for the user to be able to see the content? For example I want user to add 5 posts before posts from category Locked become visible to him.
– MLL
Nov 28 at 22:47
Solved. Thank you!
– MLL
Nov 28 at 22:53
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
I guess count_user_posts
is what you're looking for ;)
This is how you use it:
$user_post_count = count_user_posts( $userid , $post_type );
And it returns the number of published posts the user has written in this post type.
PS. And if you want some more advanced count, get_posts_by_author_sql
can come quite handy.
I guess count_user_posts
is what you're looking for ;)
This is how you use it:
$user_post_count = count_user_posts( $userid , $post_type );
And it returns the number of published posts the user has written in this post type.
PS. And if you want some more advanced count, get_posts_by_author_sql
can come quite handy.
answered Nov 28 at 22:23
Krzysiek Dróżdż
12.8k52637
12.8k52637
Thank you. Where do I put number of posts I want for the user to be able to see the content? For example I want user to add 5 posts before posts from category Locked become visible to him.
– MLL
Nov 28 at 22:47
Solved. Thank you!
– MLL
Nov 28 at 22:53
add a comment |
Thank you. Where do I put number of posts I want for the user to be able to see the content? For example I want user to add 5 posts before posts from category Locked become visible to him.
– MLL
Nov 28 at 22:47
Solved. Thank you!
– MLL
Nov 28 at 22:53
Thank you. Where do I put number of posts I want for the user to be able to see the content? For example I want user to add 5 posts before posts from category Locked become visible to him.
– MLL
Nov 28 at 22:47
Thank you. Where do I put number of posts I want for the user to be able to see the content? For example I want user to add 5 posts before posts from category Locked become visible to him.
– MLL
Nov 28 at 22:47
Solved. Thank you!
– MLL
Nov 28 at 22:53
Solved. Thank you!
– MLL
Nov 28 at 22:53
add a comment |
up vote
1
down vote
Guy above answered correctly, but for anyone needing this further, I will add full code as response too...
$user = wp_get_current_user();
$user_ID = get_current_user_id();
$user_post_count = count_user_posts( $user_ID );
$my_post_meta = get_post_meta($post->ID, 'shortcode_name', true);
if (( in_category('Locked') ) && in_array( 'subscriber', (array) $user->roles ) && $user_post_count == 5 ) {
/* Is subscriber, is in category Locked, has amount of posts */
echo do_shortcode('[shortcode_name]');
} else if (( in_category('Locked') ) && in_array( 'subscriber', (array) $user->roles ) ) {
/* Is subscriber, is in category Locked, has NO amount of posts */
echo '<div id="locked">
You are subscriber without number of posts!
</div>';
} else if (( in_category('Locked') ) && in_array( 'administrator', (array) $user->roles ) ) {
/* Is subscriber, is in category Locked, has power */
echo do_shortcode('[shortcode_name]');
} else if ( in_category('Locked') ) {
/* Is NOT subscriber, is in category Locked, has NO amount of posts */
echo '<div id="locked">
Login or register pal!
</div>';
} else if ( ! empty ( $my_post_meta ) ) {
/* Post meta exist */
echo do_shortcode('[shortcode_name]');
} else {
/* Is NOT subscriber, is NOT in category Locked, has NO amount of posts */
/* Post meta NOT exist */
echo do_shortcode('[shortcode_name_1]');
}
add a comment |
up vote
1
down vote
Guy above answered correctly, but for anyone needing this further, I will add full code as response too...
$user = wp_get_current_user();
$user_ID = get_current_user_id();
$user_post_count = count_user_posts( $user_ID );
$my_post_meta = get_post_meta($post->ID, 'shortcode_name', true);
if (( in_category('Locked') ) && in_array( 'subscriber', (array) $user->roles ) && $user_post_count == 5 ) {
/* Is subscriber, is in category Locked, has amount of posts */
echo do_shortcode('[shortcode_name]');
} else if (( in_category('Locked') ) && in_array( 'subscriber', (array) $user->roles ) ) {
/* Is subscriber, is in category Locked, has NO amount of posts */
echo '<div id="locked">
You are subscriber without number of posts!
</div>';
} else if (( in_category('Locked') ) && in_array( 'administrator', (array) $user->roles ) ) {
/* Is subscriber, is in category Locked, has power */
echo do_shortcode('[shortcode_name]');
} else if ( in_category('Locked') ) {
/* Is NOT subscriber, is in category Locked, has NO amount of posts */
echo '<div id="locked">
Login or register pal!
</div>';
} else if ( ! empty ( $my_post_meta ) ) {
/* Post meta exist */
echo do_shortcode('[shortcode_name]');
} else {
/* Is NOT subscriber, is NOT in category Locked, has NO amount of posts */
/* Post meta NOT exist */
echo do_shortcode('[shortcode_name_1]');
}
add a comment |
up vote
1
down vote
up vote
1
down vote
Guy above answered correctly, but for anyone needing this further, I will add full code as response too...
$user = wp_get_current_user();
$user_ID = get_current_user_id();
$user_post_count = count_user_posts( $user_ID );
$my_post_meta = get_post_meta($post->ID, 'shortcode_name', true);
if (( in_category('Locked') ) && in_array( 'subscriber', (array) $user->roles ) && $user_post_count == 5 ) {
/* Is subscriber, is in category Locked, has amount of posts */
echo do_shortcode('[shortcode_name]');
} else if (( in_category('Locked') ) && in_array( 'subscriber', (array) $user->roles ) ) {
/* Is subscriber, is in category Locked, has NO amount of posts */
echo '<div id="locked">
You are subscriber without number of posts!
</div>';
} else if (( in_category('Locked') ) && in_array( 'administrator', (array) $user->roles ) ) {
/* Is subscriber, is in category Locked, has power */
echo do_shortcode('[shortcode_name]');
} else if ( in_category('Locked') ) {
/* Is NOT subscriber, is in category Locked, has NO amount of posts */
echo '<div id="locked">
Login or register pal!
</div>';
} else if ( ! empty ( $my_post_meta ) ) {
/* Post meta exist */
echo do_shortcode('[shortcode_name]');
} else {
/* Is NOT subscriber, is NOT in category Locked, has NO amount of posts */
/* Post meta NOT exist */
echo do_shortcode('[shortcode_name_1]');
}
Guy above answered correctly, but for anyone needing this further, I will add full code as response too...
$user = wp_get_current_user();
$user_ID = get_current_user_id();
$user_post_count = count_user_posts( $user_ID );
$my_post_meta = get_post_meta($post->ID, 'shortcode_name', true);
if (( in_category('Locked') ) && in_array( 'subscriber', (array) $user->roles ) && $user_post_count == 5 ) {
/* Is subscriber, is in category Locked, has amount of posts */
echo do_shortcode('[shortcode_name]');
} else if (( in_category('Locked') ) && in_array( 'subscriber', (array) $user->roles ) ) {
/* Is subscriber, is in category Locked, has NO amount of posts */
echo '<div id="locked">
You are subscriber without number of posts!
</div>';
} else if (( in_category('Locked') ) && in_array( 'administrator', (array) $user->roles ) ) {
/* Is subscriber, is in category Locked, has power */
echo do_shortcode('[shortcode_name]');
} else if ( in_category('Locked') ) {
/* Is NOT subscriber, is in category Locked, has NO amount of posts */
echo '<div id="locked">
Login or register pal!
</div>';
} else if ( ! empty ( $my_post_meta ) ) {
/* Post meta exist */
echo do_shortcode('[shortcode_name]');
} else {
/* Is NOT subscriber, is NOT in category Locked, has NO amount of posts */
/* Post meta NOT exist */
echo do_shortcode('[shortcode_name_1]');
}
edited Nov 29 at 16:14
answered Nov 28 at 22:53
MLL
355
355
add a comment |
add a comment |
Thanks for contributing an answer to WordPress Development Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fwordpress.stackexchange.com%2fquestions%2f320505%2fchecking-is-user-author-of-number-of-posts%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown