Buddypressnewb
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: What cookies does WordPress use?Thanks Andrew for providing the link with info.
Forum: Everything else WordPress
In reply to: What cookies does WordPress use?Does WordPress CMS use cookies for it performance, my website.
Forum: Fixing WordPress
In reply to: Cannot reach wp-admin@kmessinge: I am kinda new to WordPress but i always thought it was domain/wp-admin…
Guess i was blinded all this time, case closed than.
Thank you for your time. Kind regards,
IvoForum: Fixing WordPress
In reply to: Cannot reach wp-adminSorry I thought that info was enough, clean instal, this problem —>
http://www.woonstip.nl/wp-login.php?redirect_to=http%3A%2F%2Fwww.woonstip.nl%2Fwp-admin%2F&reauth=1No plugins, just a default WordPress theme that comes with the installation.
Not configured MyPHP / MySQL
Not configured WP-Config
—-
Have no idea how to solve this
Forum: Hacks
In reply to: Post Counter Short CodeMany thanks a friend of my helped me with adjusting the code, this is code that he gave me:
function my_post_count() {
$count_posts = wp_count_posts();
$published_posts = $count_posts->publish;return $published_posts;
}
add_shortcode(‘my_post_count’, ‘my_post_count’);Thanks for the help.
Forum: Hacks
In reply to: Post Counter Short CodeI am busy with job site that counts the active jobs and resumes. I also want something that counts the number of post (articles).
The theme that i use supports short codes (on the frontpage), for the above the theme developer made a short code. But a counter for post is behind their support (that’s understandable).
A fuction code that generates this short code, would solve my problem.
Thank you.