johannesfosseus
Forum Replies Created
-
Hi, thank you, this in included in the new 1.2.4 version, again thank you Jabberwo.
Hi, version 2.0b of the Content Sort plugin is now published, lots of news and no longer need for special templates!
regards // Johannes
Forum: Plugins
In reply to: [Social-News] [Plugin: Social-News] Social NewsHi ABCDiamond
I have released the 1.1 version, lots of bugs are gone and you can now use any templates, so the “add page” thing is gone!
Download the plugin, drop in plugin folder, activate, done.
you will have the post form at your-domain.com/add
@granit, yes, it was included in the 1.0 version / templates, in 1.1 its no longer needed and therefore removed.
regards // Johannes
Forum: Plugins
In reply to: [Social-News] [Plugin: Social-News] Not WorkingHi Li-An
I have released the 1.1 version, lots of bugs are gone and you can now use any templates, so the “add page” thing is gone!
Download the plugin, drop in plugin folder, activate, done.
you will have the post form at your-domain.com/add
regards // Johannes
Forum: Plugins
In reply to: accessing get_query_var from pluginYes – perfect thanks!
// johannes
Forum: Plugins
In reply to: [Social-News] [Plugin: Social-News] Not WorkingHi menonsafari
What php version and wp version are you using?
Any erromessages?
Did you rebuild your links?regards // johannes
Forum: Plugins
In reply to: [Social-News] [Plugin: Social-News] Social NewsHi ABCDiamond
What wp version are you using?
// johannes
Hi
Is this in the wp-backend or in the frontend?
regards // johannes
Forum: Plugins
In reply to: [Content Sort] [Plugin: Content Sort] No post, no gridHi, do yo see the “Content sort” in the post menu?
please explain some more to me.
regards // johannes
Forum: Fixing WordPress
In reply to: How plugings are parsed?ok, thank you both!
regards // johannes
Forum: Fixing WordPress
In reply to: How plugings are parsed?Hi jkovis, and thank you for the reply!
Yes, that is good thinking, but does that mean that the code wont get parsed? I guess no?
That means that the methods/functions inside that block will not be executed? The php-file will still get loaded at every request, or do I miss something important?
If (for example) my codebase get large I rather load only the files I need to execute the things I want.
Please lead me to the correct way ??
regards // Johannes
Forum: Plugins
In reply to: Recommend a “top story” plugin? (or top author)Hi Zebradaddy
Sorry, not seen that. But I have to inform you, since you run a news site, that my Content Sort plug-in lets the editor sort posts on the first page using drag and drop. Great to use on a news site ??
https://www.ads-software.com/extend/plugins/content-sort/
regards // Johannes
Forum: Plugins
In reply to: query_posts() orderingok, thanks.
Do you have any thoughts of witch one nicer to the database?
this one….
foreach( $post_ids as $id ) {
$args = array(
‘post__in’ => array($id)
);
$my_query = null;
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<?php the_title(); ?></p>
<?php
endwhile;
}
}of something like this?
foreach( $post_ids as $post_id ) {
$post = get_post($post_id);
echo $post->post_title;
}many thanks for the reply // JOhannes