fembat
Forum Replies Created
-
Forum: Installing WordPress
In reply to: I have re-installed 5 times now…helpHave a look here
https://www.ads-software.com/support/topic/67796?replies=16
*woops already posted sorry!
Forum: Fixing WordPress
In reply to: Sidebar Recent Posts with short extractThanks.
Trouble is I had already explored those options but couldn’t find a solution that would lay them out how I needed them – no matter what combination I tried. I did try the search solution first, but had hoped someone could assist by pointing me in the direction of laying it out exactly the way they had.
But yes, thanks for your help.
Forum: Fixing WordPress
In reply to: Sidebar Recent Posts with short extractSorry just most recent ten. Its getting late here, and I am really tired ??
Forum: Everything else WordPress
In reply to: Suspended AccountAs whooami stated it would not be possible for you to retain jbay.wordpress.com – the internet simply does not work that way. To host the blog yourself you would need to obtain your own domain and web hosting.
Forum: Themes and Templates
In reply to: Show Posts By Author problem.Have you tried the following?
<?php the_author_posts_link() ?>
Forum: Themes and Templates
In reply to: Index entries laid out differentlyStill struggling ??
Forum: Everything else WordPress
In reply to: WordPress site running WordPress?I frequently utilise wordpress as a CMS, and with the use of some plugins etc it is indeed possible to develop small sites utilising the platform.
Forum: Everything else WordPress
In reply to: Suspended AccountUsually they tend only to suspend accounts if they have breached their terms and conditions in some way. Double check them and make sure your site was OK in this regard.
Other than that it is just a case of waiting until they respond. They probably have a lot of support queries so you might need to be patient.
Sorry I could not help further.
Forum: Everything else WordPress
In reply to: Is this plagiarism?As far as I am aware if you fully credit the source using correct web referencing then you are OK.
You will only run into problems if you copy without giving full credit and do not give a link to the source.
That said, I am no expert.
Forum: Themes and Templates
In reply to: Index entries laid out differentlyStill working on this… but going wrong somewhere.
Can anyone tell me where I have gone wrong here
<?php
$myposts = get_posts(‘numberposts=1’);
foreach($lastposts as $post) :
setup_postdata($post);
?>
<div class=”topNewsDate”>Top News – <?php the_date(”,'<h2>’,'</h2>’); ?></div><div class=”newsOne”>
<h2>” rel=”bookmark”><?php the_title(); ?></h2>
<?php the_content(__(‘(more…)’)); ?>
<?php wp_link_pages(); ?>
<?php comments_popup_link(__(‘Comments (0)’), __(‘Comments (1)’), __(‘Comments (%)’)); ?>
<?php comments_template(); // Get wp-comments.php template ?>
<?php endforeach; ?>
</div><div class=”newsTwo”>
<?php
$myposts = get_posts(‘numberposts=1&offset=1’);
foreach($lastposts as $post) :
setup_postdata($post);
?>
” id=”post-<?php the_ID(); ?>”><?php the_title(); ?>
<?php the_content(); ?>
<?php endforeach; ?>Forum: Themes and Templates
In reply to: Index entries laid out differentlyOK. By searching the forums I managed to find this, which outlines what I want. Anyone got any ideas how I can do it.
Basically I used the post-teaser plugin to only show the first 100 characters of a post and restricted the homepage to display 1 post at a time. The normal loop was in a div called latestpost
I then found in the Wikki the useful get_posts template tag – so I then created another div called recentposts and used the get_posts function to return the title and excerpt from the most recent 3 posts (using an offset of 1 to miss the latest post).
Forum: Themes and Templates
In reply to: Button Hoversblog = https://blog.getnoticedfirst.com/ = powered by wordpress = still being developed, and doesn’t have all the links in yet. So yes, its a blog, in development – but a wordpress blog none the less.
Forum: Themes and Templates
In reply to: Button HoversEr, actually it is, or will be – once its working I will be coding it for wordpress
assuming that is I ever get it to work!
Forum: Fixing WordPress
In reply to: Display Sub Categories under category archivesThank you so much!!
Forum: Fixing WordPress
In reply to: Display Sub Categories under category archivesTried this
<?php
wp_list_cats(‘list=1&use_desc_for_title=0&child_of=’ . $this_category->category_parent); ?>But I just couldn’t seem to get it to work. Came up no categories.