>> В результате чтения сотен статей и форумов я стою перед сложным(по крайней мере для
>> меня - новичка) выбором - изучение wordpress или php
Учить нужно и Wordpress и PHP.
2) PODS
Это?
>> Use a template to display fields.
>> By specifying a Pods Template in the "template" argument you can display
>> one or more items with that template. pods.io/docs/learn/shortcodes/pods
select
u.id,
u.user_login,
p.count_posts
from wp_users u
inner join
(
select
post_author,
count(*) as count_posts
from wp_posts
where post_type = 'post'
group by post_author
) p on p.post_author = u.id
order by u.id,
p.count_posts